Fix Dreamhost Stats problem in Wordpress
Users who has installed Wordpress blog application on Dreamhost may noticed that they can’t access the Dreamhost stats page on their blog (sub)domain.
This is caused by the way Wordpress handle URL in its internal system. However you can fix this issue by adding a few lines in your Wordpress .htaccess file.
-
-
RewriteEngine On
-
RewriteBase /
-
RewriteCond %{REQUEST_URI} ^/(stats|failed_auth\.html)/?(.*)$ [NC]
-
RewriteRule ^.*$ - [L]
-
Make sure you put the lines before the Wordpress rewrite rule. Finally overwrite the .htaccess files on the server and the Dreamhost stats should be back working by now.
You can read the full text of the tutorial in Dreamhost Wiki page.
Tags: dreamhost, hosting, wordpress, htaccess, mod_rewrite, apache













This has not worked for me, unfortunately. Maybe there is a different problem with the latest release?
Using this .htaccess makes my site not work at all. I also tried the SSH solution they recommend but that didn’t work either. Aargh. I wonder if any of your other readers have this problem?
DD