[Answer]-Double slash when 301ing from foo.com to www.foo.com with Django / Apache / mod_wsgi

1👍

Change

RewriteRule ^(.*)$          http://foo.com/$1 [L,R=301]

To

RewriteRule ^(.*)$          http://foo.com$1 [L,R=301]

Leave a comment