SEO when moving articles... - Joomla! Forum - community, help and support
hello. building new joomla site , seo going important me, wondering something.
when move article 1 catogory another, seems that article no longer appears in google search results , gives 404 not found error.
does have experience issue, , there ways work in joomla? site grows on time need create new categories reflect needs of users, , need rearrange articles , categories. if every time move article disapears google, big problem me.
any suggestions or thoughs appreciated.
when move article 1 catogory another, seems that article no longer appears in google search results , gives 404 not found error.
does have experience issue, , there ways work in joomla? site grows on time need create new categories reflect needs of users, , need rearrange articles , categories. if every time move article disapears google, big problem me.
any suggestions or thoughs appreciated.
you'll want redirect urls through .htaccess file
when change urls in .htaccess file similar if you're on apache: (don't copy this, familiarity)
do search on google permanent redirect , you'll find tutes taking care of 301 redirects.
when change urls in .htaccess file similar if you're on apache: (don't copy this, familiarity)
code: select all
rewriteengine on
rewritecond %{the_request} ^[a-z]{3,9}\ /index\.html
rewriterule ^index\.html$ http://www.mysite.com/ [r=301,l]
redirectmatch permanent ^/old-web-page.html$ http://www.mysite.com/new-web-page.html
do search on google permanent redirect , you'll find tutes taking care of 301 redirects.
Comments
Post a Comment