带有参数变量的htaccess重定向url

时间:2018-09-14 15:29:36

标签: .htaccess redirect

当用户从特定网址访问我的网站时,我正在尝试重定向流量。
* CATEGORY_ID将是字母数字

//domain.net/news/cat/{CATEGORY_ID}

应重定向到

//other.com/#/id/{CATEGORY_ID}

我的尝试from this article

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^/news/cat/(.+)$
RewriteRule .* //other.com/#/id/%1 [L,R=301,QSA]

出现404错误。

请帮忙,谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^news/cat/(.+)$ http://exemple.com/\x2523/id/$1 [NC,L,R=301]