In codeigniter, once you enable short urls, you have the possibility of duplicate content because although your new URLs look like:
http://domain.com/privacy_policy
You can still manually access the old links, which still load when you type in:
http://domain.com/index.php/privacy_policy
My htaccess file, per the manual, looks like:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
What should I do to solve this problem?
You could resolve this issue by redirecting the user agents to a new URL.
Method #1: Using htaccess
Use the following just after
RewriteBase /
, as the first RewriteRule:You might want to change
$1
tohttp://example.com/$1
if you haven't usedRewriteBase
.The other rules MUST come after the above rule.
Method #2: Handle with PHP
I'd suggest to extend the
CI_Controller
as follows:However, the search engines won't index the URLs which look like
index.php/privacy_policy
, Unless you've used such URL addresses in your page.Also, you could use a canonical link element within your pages to make search engines index only one version of the page for their search results:
Particularly in CodeIgniter: