Dreamhost, .htaccess, and stats

Feed 0 posts, 1 voices

Avatar
0 posts

If you host your site on Dreamhost, the default Frog .htaccess file prevents you from accessing your site’s stats directory, i.e. yourdomain.com/stats

Regain access to the directory by adding this snippet just before Frog’s <IfModule mod_rewrite.c> line:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR]
RewriteRule ^.*$ - [L]
</IfModule>