Forum Moderators: phranque
We have several websites which all point the same pages
www.domain1.com/about/page.aspx is the same info as www.domain2.com/about/page.aspx and www.domain3.com/about/page.aspx
they all use the same htaccess file
i would like to add a query string to just one of the sites ie
www.domain1.com/about/page.aspx to redirect to www.domain1.com/about/page.aspx?newitem=b01
is his possible?
some help please!
However, the description of your site(s) sounds like a recipe for search-ranking disaster -- You have created a duplicate-content problem, and the result will be that the search engines will see those identical pages, 'pick one' of them based on their own priorities (not yours), and drop the others.
Best practice would be to redirect all secondary domains to one single domain, and promote only that one domain. Doing this, you make the one domain more powerful that the sum of the others, cut promotion costs, concentrate back-links, link-popularity, and PageRank, etc.
Jim
i currently have:
RewriteCond %{HTTP_HOST}!^www\.domain\.co\.uk [NC]
RewriteRule /AboutUs/OurAim\.aspx /AboutUs/OurAim.aspx?newitem=b01 [I,L,RP]
Dont want to have to do each page ie.
RewriteCond %{HTTP_HOST}!^www\.domain\.co\.uk [NC]
RewriteRule /AboutUs/OurAim\.aspx /AboutUs/OurAim.aspx?newitem=b01 [I,L,RP]
RewriteCond %{HTTP_HOST}!^www\.domain\.co\.uk [NC]
RewriteRule /AboutUs/history\.aspx /AboutUs/history.aspx?newitem=b01 [I,L,RP]