Quote:
Originally Posted by Mr Pheer
This almost works but it gives me some weird redirect loop
|
Yup, could be, cause the url redirected to also contains the "bozeman" keyword.
So, you can add some condition before to ignore the url you are redirecting to for example:
Code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^.*(\/montana\/bozeman\/index.php)$
RewriteCond %{REQUEST_URI} ^.*(bozeman).*$
RewriteRule ^ /montana/bozeman/index.php [L,R=302,NE]
</IfModule>