我有这个在我的.htaccess
RewriteCond %{QUERY_STRING} ^(.*)?$
RewriteRule ^([0-9A-Za-z\-_]+)(/)? index.php?action=view&type=page&page=$1&%1 [L]
但是当我把它放在浏览器中时:
http://localhost:8888/myapp/test%20doc
网址转换为:
index.php?action=view&type=page&page=test
为什么我不应该得到:
index.php?action=view&type=page&page=test%20doc ?