I have been adjusting my .htaccess to redirect old templates to new templates, remove index.php, etc. I have successfully managed to do everything I needed after researching, googling, and asking here.
Well, all except on thing:
All the EE redirects don’t function. The index.php that should be in here:
http://www.ffpblog.com/index.php/?URL=http://www.ffpblog.com/system/401/ has been removed making these redirects not function when produced. They basically reload the index page with the entire URL string in the address bar. Inserting the index.php/ into the right spot makes the redirect page come up with the proper link (but not auto forward). I am assuming theu require the index.php to be parsed properly
I tried several variations on the theme of adding a line to the css fix below without success. Mostly it just returns “invalid uri” without adding the index.php string.
Anyone know how to fix this little niggle so everything is finally back to proper working order?
#Fixes CSS //////////
RewriteCond %{QUERY_STRING} ^(css=.*)$ [NC,OR]
RewriteCond %{QUERY_STRING} ^(URL=.*)$ [NC]
RewriteRule ^(.*)$ /index.php?/%1 [L]