For some dumb reason IE treats the last JavaScript file inside the head element on the next version of my site as $_SERVER['REQUEST_URI']. The only thing this effects is what page IE users are redirected to after signing in and it currently redirects to the JavaScript file.
Here is my .htaccess file with the relevant code...I've spent the past few hours searching and it seems to be a very vague Apache bug apparently...though if it was an Apache bug then it would effect all browsers right? I'm totally thrown off if it's specifically IE or an IE+something else sort of bug? Is my mod rewrite written incorrectly? Thoughts please?
Code: Select all
<ifmodule mod_rewrite.c>
RewriteEngine on
RewriteRule ^(exception1/|exception2/|exception1.php) - [L]
RewriteRule !\.(ico|jpg)$ index.php
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.php\ HTTP/
RewriteRule ^index\.php$ http://%{SERVER_NAME} [NC,R=301,L]
</ifmodule>