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

I want to redirect non-www to www, and exclude a specific file (eg. testit.php). Cant find a working solution...

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

This redirects all files, including testit.php (which i want to exclude).

Thanks for help!

share|improve this question

1 Answer

up vote 0 down vote accepted
RewriteCond %{REQUEST_URI} !^/testit.php
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
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.