如何使用.htacess重定向修改后的URL

时间:2018-06-06 15:47:53

标签: .htaccess redirect permalinks

我想将我的网站转移到新域名。但是,面临永久链接结构的问题。例如,

 for client in $client
     do 
       cd $WORKSPACE/src/main/webapp && /usr/bin/npm install && /usr/bin/npm run dev -- --env.client $client

     aws s3 sync $WORKSPACE/src/main/webapp/build/$client/*  s3://example.com/$client --acl public-read --delete
       echo "Data copied for $client"
     done

实际上,单个单词将从固定链接的末尾更改。 我尝试了以下代码,但它显示在新域上找不到404。

Old Structure: oldsite.com/salman-khan-biography/
New Structure: newsite.com/salman-khan-movies/

1 个答案:

答案 0 :(得分:0)

在您的旧网站htaccess中尝试使用以下内容。

RewriteEngine On
RewriteCond %{REQUEST_URI} (.+)\-biography/?$
RewriteRule ^ http://newsite.com/%1-movies/ [R=301]