No stats is not a soft link, it must be set as an alias at the hosting  
level...

Matias Gertel
Freelance Web Development & Coding
e: [email protected]
m: +64 21 288 8840
p: +64 9 838 3367

On 5/05/2009, at 8:12 AM, Boyd wrote:


stats would be matched by your current exclusion of existing files and
directories, i suspect /stats is a soft link to somewhere else. When
you hit stats does it remain /stats in the browser?

On May 4, 11:48 pm, Matias Gertel <[email protected]> wrote:
> Any mod_rewrite expert?
> I have an .htaccess file in a domain redirecting all requests to the
> index page, a standard rewrite for any modern CMS. It looks like this:
> <IfModule mod_rewrite.c>
>         RewriteEngine On
>         RewriteBase /
>
>         RewriteCond %{REQUEST_FILENAME} !-f
>         RewriteCond %{REQUEST_FILENAME} !-d
>
>         RewriteRule ^(.*)$ index.php/$1 [L]
> </IfModule>
>
> Now, my hosting company gives me webalizer stats if I go to
> mydomain.com/stats. Of course, since I added the .htaccess file, the
> stats url stopped working. So I said, cool, I'll google some help and
> in 2 minutes I'll fix it. Wrong! So far I'm stuck with:
>
> <IfModule mod_rewrite.c>
>         RewriteEngine On
>         RewriteBase /
>
>         RewriteCond %{REQUEST_URI} !/stats
>         RewriteCond %{REQUEST_FILENAME} !-f
>         RewriteCond %{REQUEST_FILENAME} !-d
>
>         RewriteRule ^(.*)$ index.php/$1 [L]
>
> </IfModule>
>
> But no luck... any hints?
>
> Matias Gertel
> Freelance Web Development & Coding
> e: [email protected]
> m: +64 21 288 8840
> p: +64 9 838 3367



--~--~---------~--~----~------------~-------~--~----~
NZ PHP Users Group: http://groups.google.com/group/nzphpug
To post, send email to [email protected]
To unsubscribe, send email to
[email protected]
-~----------~----~----~----~------~----~------~--~---

Reply via email to