03-22-2010, 03:24 AM
[eluser]Scott Boyde[/eluser]
recently I had to move hosts and the with the new host I had to add ? into the line that removed the index.php
So my this line
Became
My 301 redirect rule is
But when you visit that page you just get a url with a ? where the index would normally be
http://www.nifootball.co.uk/?/pages/home.html
recently I had to move hosts and the with the new host I had to add ? into the line that removed the index.php
So my this line
Code:
RewriteRule ^(.*)$ /index.php/$1 [L]
Became
Code:
RewriteRule ^(.*)$ /index.php?/$1 [L]
My 301 redirect rule is
Code:
redirect 301 /pages/home.html http://www.nifootball.co.uk
But when you visit that page you just get a url with a ? where the index would normally be
http://www.nifootball.co.uk/?/pages/home.html