.htaccess做301跳转的问题,求帮助! 悬赏3元 已结束
1、栏目页跳转:(...代表域名)
旧地址 .../default/ 301跳转到 新地址 .../category/default/
2、产品页跳转:
.../default/p_1234567.html 301跳转到 新地址 .../product/1234567.html
3、文章页跳转:
.../news/a_123456.html 301跳转到 新地址 .../article/123456.html
求教下,用.htaccess文件来做,分别怎么写,万分感激~!~!
4 人参与回答
找技术写吧
RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^xxxx。com [NC]
RewriteRule ^(.*)$ http://www。xxxx。com/$1 [L,R=301]
RewriteRule default/$ category/default/$1 [L,R=301]
RewriteRule default/p_ $ product/$1 [L,R=301]
RewriteRule news/a_ $ article/$1 [L,R=301]
-----------------------------------
前面xxxx。com填你域名部分