wordpress - .htaccess to change the domain in the URL -
i have following 2 wordpress sites.
- test.mysite.com
- mysite.com
the uploads(images) folder on mysite.com , want image urls test.mysite.com redirected mysite.com
for example link test.mysite.com/wp-content/uploads/2015/09/image.jpg
should redirected mysite.com/wp-content/uploads/2015/09/image.jpg
i appreciate help.
if care website traffic , seo. recommend using 301 redirection is: redirectmatch permanent
it's quite easy! make new .htaccess file @ test.mysite.com > add chunk of codes bellow:
rewriteengine on
redirectmatch permanent ^/wp-content/uploads/(.*)$ http://mysites.com/wp-content/uploads/$1
now images should 301 seo redirected concerned location.
Comments
Post a Comment