我已经为 url 重写配置了我的 .htaccess 文件。我只是使用 [L] 标志,没有 [R] 标志作为规则。当我在我的浏览器中测试它时,页面被调用但是......出现了参数 url。这当然是我不想要的。
我的 .htaccess 文件:
RewriteEngine on
RewriteRule ^testing/([0-9a-zA-z_-]+)/([0-9a-zA-z_-]+)$ http://localhost/testing/index.php?a=$1&b=$2 [L]
是因为我在本地主机上测试它吗?