vbulletin stats

vbulletin stats

Posted by: biftek
Posted on: 2008-04-29 17:47:00

can anyone help me out with a mod rewrite to get the dreamhost stats working with vbulletin?
the mod rewrite , so that when i type domain.com/stats i get forwarded to my dreamhost stats ?

i tried the one with wordpress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR]
RewriteCond %{REQUEST_URI} ^/failed_auth.html$
RewriteRule ^.*$ - [L]
</IfModule>

it worked , but then i could access my domain got a 500 error

thanks in advance

Re: vbulletin stats

Posted by: biftek
Posted on: 2008-04-29 17:50:00

ah its ok , found my answer in the wiki , should've looked there first

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

Tags: mod rewritedreamhost