vote up 1 vote down star

How do I get modrewrite to ENTIRELY ignore the /vip/ directory so that all requests pass directly to the folder?

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^vip/.$ - [PT]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

See also http://stackoverflow.com/questions/163302/how-do-i-ignore-a-directory-in-modrewrite -- reposting because I wasn't sufficiently clear about the problem first time around.

flag

1 Answer

vote up 1 vote down

Replace:

RewriteRule ^vip/.$ - [PT]

with:

RewriteRule ^vip/.*$ - [PT,L]
link|flag
Alas this didn't work - any idea why? – eddowding Oct 5 '08 at 9:25

Your Answer

Get an OpenID
or

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