我有这个代码:
RewriteEngine on
RewriteRule (.*)\.php review.php?site=$1 [L]
我想从中得到:
http://m.example.com/sandbox/mates.php
对此:
http://m.example.com/sandbox/review.php?site=mates
但它不起作用..请注意,我的 htaccess 根文件在目录中,而不是在根目录中。
我有这个代码:
RewriteEngine on
RewriteRule (.*)\.php review.php?site=$1 [L]
我想从中得到:
http://m.example.com/sandbox/mates.php
对此:
http://m.example.com/sandbox/review.php?site=mates
但它不起作用..请注意,我的 htaccess 根文件在目录中,而不是在根目录中。