URL地址301重定向解决方案
程序员文章站
2023-12-28 14:43:22
...
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
------解决思路----------------------
试试
请问如何将下面的地址通过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;
相关文章
相关视频