Mobile app version of vmapp.org
Login or Join
Hamaas447

: Preventing Duplicates on Google I am currently using a rewrite rule to enable access to .php pages, without using the php extension. However to prevent old links from breaking, the pages can

@Hamaas447

Posted in: #DuplicateContent #Seo

I am currently using a rewrite rule to enable access to .php pages, without using the php extension. However to prevent old links from breaking, the pages can still be accessed via links containing the .php extension too.

For eg.

domain.com/page.php can now be accessed at domain.com/page

All the links on the website now use domain.com/page type links within the site. However older incoming links will still link to the .php pages, meaning Google will index both pages and mark them as duplicate.

I have two plans to remedy the situation.


Use a php 301 redirect: When a page is accessed with the .php extension, I can redirect each page individually using a 301 redirect using php
Using Canonical: Place a canonical tag on each page, pointing to the ".php" less version


My Question:
Are both methods equally efficacious in preventing Google from indexing my ".php" pages?
Which method should be preferred, by convention or otherwise?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamaas447

2 Comments

Sorted by latest first Latest Oldest Best

 

@Pope3001725

In your case the Canonical tag is not important. The 301 is the strongest signal you can give that Google should update its index.

Canonical is more important if you can't or don't want to do a 301 Redirect.

10% popularity Vote Up Vote Down


 

@Kevin317

Doing both is exactly what you want to do and will be effective in preventing Google from finding duplicate URLs. The 301 redirect will make sure Google, and users, find the correct URL and the canonical URL will ensure Google knows the URL is the correct URL and to assign any reference to 'page.php' to 'page'.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme