up vote 0 down vote favorite
share [g+] share [fb]

Im trying to set up a simple rewrite rule but I dont seem to be able to get it to work. Basically I want to route any address that starts with "restaurants" to a certain place and all other addresses to my bootstrap.

RewriteRule ^/restaurants http://www.google.com RewriteRule !^/restaurants index.php

is what I have so far. ie.

  • mysite.com/restaurants
  • mysite.com/restaurants/blabla
  • mysite.com/restaurants/beep/boop

would all go to google, all other requests would go to index.php

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Here is a set of rules that should work

RewriteRule ^/resturants.*   http://www.google.com/ [L] 
RewriteRule !^/index\.php$   index.php

You'll want to specify that the google redirect is last (L) otherwise it will be overridden by the second rule.

link|improve this answer
feedback

If you want to use the rules in a .htaccess file, you have to remove the leading / in the patterns:

RewriteRule ^restaurants http://example.com/
RewriteRule !^index\.php$ index.php
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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