在站点上重写URL地址


Rewriting URL address on a site

在我的网站我有这样的链接- http://example.com/index.php?page=about,我想让他们看起来像这样- http://example.com/about

这是可能的吗?如果是,我应该怎么做才能得到这个结果?

您需要使用mod_rewrite,这里是第一和第二指南。

在您的情况下,只需在根文件夹中创建.htaccess文件并编写以下代码

RewriteEngine On
RewriteRule ^([^/]*)'$ /index.php?page=$1 [L]