简体   繁体   中英

.htaccess rewrite url link

On my WordPress site, there were two URLs. europarket.info and europarket.ba

Now I do not use europarket.ba but the website still invites some pictures:

http://europarket.ba/wp-content/uploads/2013/11/image.jpg

Is it possible over htaccess to change old link to new:

http://europarket.info/wp-content/uploads/2013/11/image.jpg

I tried to change link in MySql database but for some reason when I change site will not work properly.

You can use this rule as your very first rule:

RewriteCond %{HTTP_HOST} ^europarket\.ba$ [NC]
RewriteRule ^ http://europarket.info%{REQUEST_URI} [NE,R=301,L]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM