vote up 2 vote down star

I'm trying to have the modrewrite rules skip the directory vip. I've tried a number of things as you can see below, but to no avail.

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

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

flag

7 Answers

vote up 0 vote down

I'm not sure if I understand your objective, but the following might do what you're after?

RewriteRule ^/vip/(.*)$   /$1?%{QUERY_STRING} [L]

This will cause a URL such as http://www.example.com/vip/fred.html to be rewritten without the /vip.

link|flag
vote up 0 vote down

Thanks, Peter. That hasn't done it, unfortunately.

As points of clarity:

  • It's hosted on Dreamhost
  • The folders are within a wordpress directory
  • the /vip/ folder contains a webdav .htaccess etc (though I dont think this is important
link|flag
vote up 2 vote down

Try putting this before any other rules.

RewriteRule ^vip - [L,NC]

It will match any URI beginning vip.

  • The - means do nothing.
  • The L means this should be last rule; ignore everything following.
  • The NC means no-case (so "VIP" is also matched).

Note that it matches anything beginning vip. The expression ^vip$ would match vip but not vip/ or vip/index.html. The $ may have been your downfall. If you really want to do it right, you might want to go with ^vip(/|$) so you don't match vip-page.html

link|flag
BTW, I had the same problem a few weeks ago, and this worked for me on Apache/2.2.8 (UNIX). – Patrick McElhaney Oct 2 '08 at 17:43
vote up 1 vote down

You mentioned you already have a .htaccess file in the directory you want to ignore - you can use

RewriteEngine off

In that .htaccess to stop use of mod_rewrite (not sure if you're using mod_rewrite in that folder, if you are then that won't help since you can't turn it off).

link|flag
vote up 0 vote down

Thanks everyone for your great answers!

Unfortunately it turns out it wasn't a great question...! It lacked clarity. What I was TRYING to ask was not how do I rewrite the URL to exclude the /vip/, but rather this:

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

Thanks again for all your work!

link|flag
I've edited the post to include your rephrased question. – Patrick McElhaney Nov 2 at 18:28
vote up 2 vote down

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

This says if it's an existing file or a directory don't touch it. You should be able to access site.com/vip and no rewrite rule should take place.

link|flag
vote up 0 vote down

I'm trying to achieve the same thing... need mod_rewrite to COMPLETELY ignore a specific directory under the parent directory... haven't had any luck... even when i put a new .htaccess file in the directory that i want to be ignored with "RewriteEngine off", still doesn't work.

anyone? Bueller?

link|flag

Your Answer

Get an OpenID
or

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