You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Owen Rubel <or...@gmail.com> on 2008/12/30 23:12:41 UTC

[users@httpd] Re: mod_rewrite infinite loop

Am trying to redirect all site url's that do not match "/index.php" to
> "/index.php" but sem to be getting into an infinite loop. Have spent hours
> on this and get only partial success every time. Does anyone know what I
> have done wrong? I have been over the Jack Daniels cheat sheets and haven't
> a clue what is missing?
>
>         RewriteCond %{REQUEST_URI} !/index.php [NC]
>         RewriteRule ^(.*)$ /index.php
>
>