我希望使用我网站的人在浏览器地址栏中看到 site.com/contact,而不是 site.com/index.php?page=contact。
我是 mod_rewrite 的新手,到目前为止,我来到了这个规则。
我现在的代码是:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?page=$1
我将如何做到这一点?
编辑:问题是我的联系页面的 URL 仍然显示:site.com/index.php?page=contact。