重写站点上的URL地址

时间:2011-09-18 09:59:32

标签: php .htaccess url-rewriting rules

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

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

1 个答案:

答案 0 :(得分:4)

您需要使用mod_rewrite,这是firstsecond指南。

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

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