Welcome Guest, Not a member yet? Register   Sign In
index.php duplicate content
#3

[eluser]Egill Th[/eluser]
[quote author="rammukmel" date="1344892638"]Hello,

I need some help in redirecting http://[MySite]/index.php to http://[MySite]/
I don't want to have index.php as a page to prevent duplicate content.

I've tried what was suggested on: http://ellislab.com/forums/viewthread/132758/
but then I get redirect loop and the site wont load

Any suggestions?

Thanks
Ram[/quote]

Enable mod_rewrite and add a .htaccess file to the directory that contains your front controller. (index.php)

Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>


Messages In This Thread
index.php duplicate content - by El Forum - 08-13-2012, 02:17 PM
index.php duplicate content - by El Forum - 08-13-2012, 03:26 PM
index.php duplicate content - by El Forum - 08-13-2012, 10:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB