Matias Gertel wrote:
> Any mod_rewrite expert?
I'm not sure such as thing exists. If it does, i'm certainly not it.
> 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 /
Try inserting this here...
RewriteRule stats\/.* - [L]
> RewriteCond %{REQUEST_FILENAME} !-f
> RewriteCond %{REQUEST_FILENAME} !-d
> RewriteRule ^(.*)$ index.php/$1 [L]
> </IfModule>
Cheers, Rex
--~--~---------~--~----~------------~-------~--~----~
NZ PHP Users Group: http://groups.google.com/group/nzphpug
To post, send email to [email protected]
To unsubscribe, send email to
[email protected]
-~----------~----~----~----~------~----~------~--~---