我的网址重写不起作用,.htaccess 中没有代码

问题描述 投票:0回答:1

我是第一次接触 .htaccess 文件,一直在 stackoverflow 中查看示例,但似乎没有什么对我有用,我绝对是一个做错事的菜鸟。

我得到了下一个网址:

[http://www.example.com/index.php?page=page1]

我想重写为:

[http://www.example.com]

[http://www.example.com/page1]

我将如何实现这一点,有人可以提供一个适合我的简单 URL 重写示例吗?

.htaccess url-rewriting
1个回答
0
投票

将其放入您的

.htaccess
文件中:

RewriteEngine On
RewriteCond %{QUERY_STRING} page=(.*)
RewriteRule ^index.php /%1 [L]

除此之外,请阅读有关重写 url 的 apache 文档: http://httpd.apache.org/docs/2.2/rewrite/

我知道这很枯燥、又长、又无聊,但这是值得的。

© www.soinside.com 2019 - 2024. All rights reserved.