> 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.


_______________________________________________
New York PHP User Group Community Talk Mailing List
http://lists.nyphp.org/mailman/listinfo/talk

http://www.nyphp.org/show_participation.php

Reply via email to