我如何使用.htacces重写引擎

时间:2015-03-04 16:30:25

标签: php apache .htaccess rewrite server

我想通过使用页面标题而不是php get方法来改进我的网站。

如果我将.htacces转换为/index.php?id=1

,我需要在/page中撰写什么?

1 个答案:

答案 0 :(得分:0)

RewriteRule ^page$ /index.php?id=1 [L]

如果要重写每个index.php?id = ID_HERE请使用:

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