Here's my current .htaccess:
I would like it to do what it does now - but not rewrite URIs in the form of /stats/*
I use DreamHost and so to access the stats I have to go to www.domain.com/stats/, but that is being rewritten and treated like a wordpress page name - which it obviously isn't. I'm also using Google Analytics for stats, but I'd prefer to see the DreamHost ones.
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I would like it to do what it does now - but not rewrite URIs in the form of /stats/*
I use DreamHost and so to access the stats I have to go to www.domain.com/stats/, but that is being rewritten and treated like a wordpress page name - which it obviously isn't. I'm also using Google Analytics for stats, but I'd prefer to see the DreamHost ones.





