Re: [users@httpd] RewriteRule and redirect loop with htaccess

2024-08-04 Thread Dave Wreski
Hi, Replace the following: RewriteCond %{REQUEST_URI} !^/index\.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php [L] With: FallbackResource /index.php Thanks so much, as usual. That's very helpful. After like ten hours of debugging, I als

Re: [users@httpd] RewriteRule and redirect loop with htaccess

2024-08-04 Thread Frank Gingras
On Sun, Aug 4, 2024 at 9:54 PM Dave Wreski wrote: > Hi, > > I have a rewrite that's creating a loop because the origin is contained in >>> the final destination. I know it then is processed again by the .htaccess >>> in the document root, but I don't understand why or how to stop it. What's >>> t

Re: [users@httpd] RewriteRule and redirect loop with htaccess

2024-08-04 Thread Dave Wreski
Hi, I have a rewrite that's creating a loop because the origin is contained in the final destination. I know it then is processed again by the .htaccess in the document root, but I don't understand why or how to stop it. What's the solution here? RewriteR