我是第一次接触 .htaccess 文件,一直在 stackoverflow 中查看示例,但似乎没有什么对我有用,我绝对是一个做错事的菜鸟。
我得到了下一个网址:
[http://www.example.com/index.php?page=page1]
我想重写为:
[http://www.example.com]
或
[http://www.example.com/page1]
我将如何实现这一点,有人可以提供一个适合我的简单 URL 重写示例吗?
将其放入您的
.htaccess
文件中:
RewriteEngine On
RewriteCond %{QUERY_STRING} page=(.*)
RewriteRule ^index.php /%1 [L]
除此之外,请阅读有关重写 url 的 apache 文档: http://httpd.apache.org/docs/2.2/rewrite/
我知道这很枯燥、又长、又无聊,但这是值得的。