开发者

How to redirect a sub category change (.htaccess)

开发者 https://www.devze.com 2023-02-08 06:19 出处:网络
A sub directory has changed on my site and I need to redirect traffic from http://url.com/old-sub/lo开发者_Python百科ts-of-content.php

A sub directory has changed on my site and I need to redirect traffic from

http://url.com/old-sub/lo开发者_Python百科ts-of-content.php

to

 http://url.com/new-sub/lots-of-content.php

What is the code required to do this with .htaccess?


If mod_rewrite is available:

RewriteEngine On
RewriteRule ^old-sub/(.*)$ /new-sub/$1
0

精彩评论

暂无评论...
验证码 换一张
取 消