vote up 0 vote down star

I get the following message when I browse to site.com

500 - Internal Server Error

I get my 404 error message when I browse to www.site.com which indicates my site is alive.

How can you make a domain redirection without .htaccess by Django from site.com to www.site.com?

My urls.py

     from django.conf.urls.defaults import *

     from django.contrib import admin
     admin.autodiscover()

     urlpatterns = patterns('',
     # Example:
     # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),

     (r'^home/', include('index.html')),

     # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
     # to INSTALLED_APPS to enable admin documentation:
     (r'^admin/doc/', include('django.contrib.admindocs.urls')),

     (r'^admin/(.*)', admin.site.root),
     )

[edit]

I have the following answer from Djangohosting:

Remove the website proxy for [site.com] and add [site.com] in the aliases section of the [www.site.com] website.

I am not completely sure what it means.

  1. How can you remove the website proxy for site.com?
  2. Where can you find the aliases section of the website www.site.com?
flag

Why can't you use .htaccess (or whatever other mechanism is provided by the web server you might be using)? – mipadi Apr 12 at 17:20
@mipadi: I can but I do not want to. I want to learn to configure my site without .htaccess. One told me that .htaccess, which is full of configurations, is a sign of bad security in Apache. – Masi Apr 12 at 17:25
Generally speaking, Django doesn't deal with server configurations -- at least not in this situation. A Django app is served from a server. So if you want to automatically redirect from site.com to www.site.com, an Apache configuration file of some sort is the best way to do it. – mipadi Apr 12 at 17:27

4 Answers

vote up 2 vote down check

I don't know if it solves all your problems but if you want to do it via django, try a middleware

from django.http import HttpResponseRedirect

class WWWRedirectMiddleware(object):
    def process_request(self, request):
        if not request.META['HTTP_HOST'].startswith('www.'):
            return HttpResponseRedirect('http://www.mysite.com')

Remember that it must be executed before any other middleware.

Based on this one, didn't test it.

link|flag
vote up 2 vote down

The 500 Internal Server error is likely caused by this line:

(r'^home/', include('index.html')),

The include() function is a way to include other URL config files, not static HTML files. You'd have to either serve index.html as a static file at the given URL (/home), or write a view that simply renders the file.

link|flag
I commented the line out. The same error occurs. @mipadi: Thank you for pointing that out! – Masi Apr 12 at 17:30
vote up 1 vote down

Checking out PREPEND_WWW setting might help.

link|flag
The problem is that you wouldn't be able to find the site for the prepend_www setting to work. :-) – Jason Baker Apr 12 at 17:45
vote up 1 vote down

I get the following message when I browse to site.com

500 - Internal Server Error

I get my 404 error message when I browse to www.site.com which indicates my site is alive.

It's likely the other way around. The 500 message means that your site is active, but giving an error. What you have to understand is that the site.com/www.site.com part of the url serve to find which server to connect to. By the time your django app gets called, this part has already been completed, so there's no way to do this from django.

Instead, you want to set up www as a subdomain of site.com and make them point the same place. See the first example here: virtualhosts examples

UPDATE I just noticed that you stated that your 404 was showing up, so ignore the first two sentences. Either way, the solution would likely be the same. :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.