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 an issue with my non www to www redirect. Everything else in my .htaccess file works as expected. My htaccess looks as follows.

Options +FollowSymLinks
RewriteEngine On
RewriteBase /

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

# Redirect old URLs to new ones
RewriteRule ^(about)$ about-us [L,R=301]
RewriteRule ^(contact-us)$ contact [L,R=301]

#Place index.php after hostname
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond $2 !\.(gif|jpe?g|png|css|pdf|swf|fla|ppt|php|js)$ [NC]
RewriteCond $1 !\.(gif|jpe?g|png|css|pdf|swf|fla|ppt|php|js)$ [NC]

RewriteRule ^(.*)$ index.php/$1 [L]

The other redirects work , just the non www to www doesn't. Can anyone point me in the right direction. Thanks

share|improve this question
Have you run a phpinfo script with various domain synonyms to validate that your host is setting HTTP_HOST correctly? Some hosting services process this in the Apache root config and reset it – TerryE Jan 26 '12 at 12:34
@TerryE Thanks for the reply, it seems to be set correctly. HTTP_HOST www.mysite.com HTTP_CONNECTION keep-alive – Henrick Jan 26 '12 at 15:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.