0

我需要转换这个

www.test.com/app.program?id=5

进入

www.test.com/app.program/5

我已经设置好删除 .php 文件扩展名了

4

1 回答 1

0
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([0-9]+)$ /$1?id=$2 [L]

更改[L][L,QSA]是否要将查询字符串附加到末尾,例如,如果您尝试访问:http://www.test.com/app.program/5?some-other-param=value,它将被附加到重写的末尾,以便 URI 为:/app.program?id=5&some-other-param=value

于 2012-07-16T16:56:14.680 回答