[nycphp-talk] htaccess question - deafult behavior in one folder
Andy Dirnberger
dirn at dirnonline.com
Wed May 6 17:08:34 EDT 2009
> So I need a rule that says, 'anything in /blog, just do what you
> normally do' but I'm not sure how to go about that. I've dug thru
> htaccess tutorials but I'm not finding anything.
Here's how I accomplish that same thing for Trac instead of WordPress.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/trac
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
This filters out any URIs that start with /trac or point to a file or
directory.
More information about the talk
mailing list