标签: php .htaccess url-rewriting rules
在我的网站上,我有这样的链接 - http://example.com/index.php?page=about,我想让它们看起来像这样 - http://example.com/about
是否有可能,如果我应该怎么做才能得到这个结果?
答案 0 :(得分:4)
您需要使用mod_rewrite,这是first和second指南。
mod_rewrite
在您的情况下,只需在根文件夹中创建.htaccess文件并编写以下代码
.htaccess
RewriteEngine On RewriteRule ^([^/]*)\$ /index.php?page=$1 [L]