How to remove Duplicate Content
Ad
If am presented with duplicate content on these URLS http://www.testman.com/about-us and http://www.testman.com/about-us/ what is the best course of action to resolve this issue?
Ad
Answer
Ad
The best solution is
Permanent redirect :
Use the following in Apache .htaccess
RedirectMatch 301 ^/about-us$ /about-us/
the google will index just 1 url
/about-us/
For multiple urls
you can use :
RedirectMatch 301 ([^/]+)$ /$1/
Ad
source: stackoverflow.com
Related Questions
Ad
- → October CMS create a multi select Form field
- → How to update data attribute on Ajax complete
- → laravel blade templating error
- → should I choose reactjs+f7 or f7+vue.js?
- → How to dynamically add class to parent div of focused input field?
- → Setting the maxlength of text in an element that is displayed
- → Undefined Result for Variable with Javascript innerHTML function
- → Expanding search bar not expanding before search
- → Get the calling element with vue.js
- → Blade: how to include a section in one page but not in another
- → How to print/log reactjs rendered dom?
- → how to write react component to construct HTML DOM
- → How to add a timer in HTML5 and Javascript?
Ad