URL地址301重定向解决方案
时间:2021-07-01 10:21:17
帮助过:7人阅读
URL地址301重定向
请问如何将下面的地址通过PHP 301永久重定向呢?
http://www.xxxx.com/guang/123456
重定向为http://www.xxxx.com/deal/123456
http://www.xxxx.com/index/cate/cid/1
重定向为http://www.xxxx.com/list/1
------解决思路----------------------试试
rewrite ^/guang(.*) /deal$1 last;
rewrite ^/index/cate/cid(.*) /list$1 last;