我似乎无法使用mod重写将示例1转换为示例2。有人可以帮助我吗?
示例1
http://www.example.com/info/index.php?uid=123
示例2
http://www.example.com/123
Mod重写代码。
Options +FollowSymLinks
Options -Indexes
RewriteEngine on
RewriteBase /info
RewriteRule ^([^/]*)$ /info/index.php?uid=$1 [L]
答案 0 :(得分:0)
RewriteCond %{HTTP_HOST} ^www.example.com(:80)?$ [NC]
RewriteCond %{QUERY_STRING} ^uid=(.*)$ [NC]
RewriteRule ^/info/index\.php$ http://www.example.com/%1? [NC,L,R=301]