使用.htaccess更改网址

时间:2012-02-13 06:53:33

标签: .htaccess url mod-rewrite

我有以下格式的网址:

http://example.com/realestate/index.php?page=services.html

如何使用.htaccess文件将其更改为以下格式?

http://example.com/services.html

因此省略index.php?page=并且浏览器中仅显示services.html部分 网址。

我对编写.htaccess文件一无所知。

1 个答案:

答案 0 :(得分:1)

尝试这样的事情:

RewriteEngine on
RewriteRule (.*)\.html http://example.com/index.php?page=$1 [L]

现在,url xyz.com/services.html将被重写为xyz.com/index.php?page=services.html