我有以下格式的网址:
http://example.com/realestate/index.php?page=services.html
如何使用.htaccess
文件将其更改为以下格式?
http://example.com/services.html
因此省略index.php?page=
并且浏览器中仅显示services.html
部分
网址。
我对编写.htaccess文件一无所知。
答案 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