Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a mortgage calculator site that doesn't seem to redirect from mookal.com to www.mookal.com My apache config is as follows:

RewriteEngine On
### re-direct to www
RewriteCond %{http_host} !^www.mookal.com [nc]
RewriteRule ^(.*)$ http://www.mookal.com/$1 [r=301,nc]

what am I missing? thanks!

share|improve this question

7 Answers

up vote 89 down vote accepted

Using the rewrite engine is a pretty heavyweight way to solve this problem. Here is a simpler solution:

<VirtualHost *:80>
    ServerName example.com
    Redirect permanent / http://www.example.com/
</VirtualHost>

And then you'll have another <VirtualHost> section with ServerName www.example.com for your real server configuration. Apache automatically preserves anything after the / when using the Redirect directive, which is a common misconception about why this method won't work (when in fact it does).

share|improve this answer
1  
Didn't know that one. Thanks! – cherouvim Jul 8 '09 at 20:41
1  
How do you do it for a site that has an ssl virtual host as well? – Shabbyrobe Dec 11 '10 at 16:16
9  
I get the error "The webpage at example.com has resulted in too many redirects" when using this suggestion. Do others have this problem? – Jonathan Berger Mar 28 '11 at 19:38
Wow, that's a beautifully simple way to do it. +1 – robinjam Aug 5 '11 at 15:59
1  
@BlackDivine: There's nothing magical about doing it in the other direction. Simply swap www.example and example wherever they appear in the sample. – Greg Hewgill Feb 12 '12 at 21:17
show 5 more comments

To remove www from your url website use this code on .htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

To force www in your website url use this code on .htaccess

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^YourSite.com$
RewriteRule ^(.*)$ http://www.yourSite.com/$1 [R=301]
RewriteCond %{REQUEST_fileNAME} !-d
RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule ^(([^/]+/)*[^./]+)$ /$1.html [R=301,L]

Were "YourSite.com" you must replace for your url.

share|improve this answer
Works flawless, thanks! – BlackDivine Feb 12 '12 at 21:06
Best answer here, as it work for website with multiple domain names <3 – Clement Herreman Jul 4 '12 at 15:03
What is the second part with the .html for?? – nute Dec 4 '12 at 13:16
Remove slash before $1 to don't have double slash (//) after redirect => RewriteRule ^(.*)$ yourSite.com$1 [R=301] – Kevin Campion Jan 7 at 15:40
<VirtualHost *:80>
    ServerAlias example.com
    RedirectMatch permanent ^/(.*) http://www.example.com/$1
</VirtualHost>
share|improve this answer
RewriteCond %{HTTP_HOST} ^!mookal.com$ [NC]
RewriteRule ^(.*)$ http://www.mookal.com/$1 [R=301,L]

This starts with the HTTP_HOST variable, which contains just the domain name portion of the incoming URL (example.com). Assuming the domain name does not contain a www. and matches your domain name exactly, then the RewriteRule comes into play. The pattern ^(.*)$ will match everything in the REQUEST_URI, which is the resource requested in the HTTP request (foo/blah/index.html). It stores this in a backreference, which is then used to rewrite the URL with the new domain name (one that starts with www).

[NC] indicates case-insensitive pattern matching, [R=301] indicates an external redirect using code 301 (resource moved permanently), and [L] stops all further rewriting, and redirects immediately.

share|improve this answer

http://example.com/subdir/?lold=13666 => http://www.example.com/subdir/?lold=13666

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
share|improve this answer
very short answer... but to the points... not sure if this is an up or down vote – thecoshman Oct 11 '12 at 10:01

Try this:

RewriteEngine on
RewriteCond %{HTTP_HOST}  ^mookal.com$       [NC]
RewriteRule ^(.*)         http://www.mookal.com$1  [R=301]
share|improve this answer

I ran this...

 RewriteEngine on
 RewriteCond %{HTTP_HOST} !^www.*$ [NC]
 RewriteRule ^/.+www\/(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

I need this to be universal for 25+ domains on our new server, so this directive is in my virtual.conf file in a <Directory> tag. (dir is parent to all docroots)

I had to do a bit of a hack on the rewrite rule though, as the full docroot was being carried through on the pattern match, despite what http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html says about it only being stuff after the host and port.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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