ITChristian
ITChristian

Reputation: 11271

htaccess redirect all pages without homepage

I have this htaccess code which redirect entire site to other.

Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L] 

It redirects my entire website and homepage. How can I specify the pages who i want to not redirect?

Thank you sooooo much in advance!

Upvotes: 0

Views: 406

Answers (1)

Jon Lin
Jon Lin

Reputation: 143856

Add some conditions:

Options +FollowSymLinks
RewriteEngine on

RewriteCond %{REQUEST_URI} !^/$
RewriteCond %{REQUEST_URI} !^/index\.php$
RewriteCond %{REQUEST_URI} !^/foo.bar$
RewriteRule (.*) http://www.mysite.com/$1 [R=301,L] 

etc.

Upvotes: 1

Related Questions