61
General Discussion / Re: rewrite issue
« Last post by mmccarn on July 16, 2025, 02:26:13 PM »There is a rule near the top of your htaccess that matches any URL containing "index.php".
I found this note on stackoverflow indicating you might get what you want by change the action on that rule from [L] to [END]
I found this note on stackoverflow indicating you might get what you want by change the action on that rule from [L] to [END]
Code: [Select]
- RewriteRule ^index\.php$ - [L]
+ RewriteRule ^index\.php$ - [END]