Can .htaccess fix the erratic url partially in the middle or URL?
When php is brokem and url output has double entry in it like:
mysite.eu/album/index.phpindex.php?album=%2F2008%2F2008_alldogs
I have tried to remove unsuccessfully second index.php with following .htassess line:
RewriteRule ^index.phpindex.php(.*)$ /index.php [L,R=301]
The expected result would look like: mysite.eu/album/index.php?album=%2F2008%2F2008_alldogs
If it should work, then, what I do wrong?
Thanks

