【发布时间】:2013-07-14 16:01:39
【问题描述】:
我是 .htaccess 的新手,想从 .htaccess 重定向 URL
喜欢:
http://test.example.com/abc/xyz/456adf646asdf
到
http://test.example.com/abc/xyz?id=456adf646asdf
或 http://test.example.com/abc/xyz/?456adf646asdf
请帮忙。
我试过了:
重写规则 ^(.+)/abc/xyz/$ /abc/xyz?id=$1
但对我不起作用..
【问题讨论】:
-
你没试过吗?
-
我试过了,但对我不起作用..RewriteRule ^(.+)/ride/linkedin/$ /ride/linkedin?id=$1
-
编辑您的问题并使用您的示例进行更新
-
完成。请检查问题。
-
试试
RewriteRule ^/ride/linkedin/(.+)$ /ride/likedin?id=$1
标签: php .htaccess url redirect