标签: php apache .htaccess rewrite server
我想通过使用页面标题而不是php get方法来改进我的网站。
如果我将.htacces转换为/index.php?id=1
.htacces
/index.php?id=1
/page
答案 0 :(得分:0)
RewriteRule ^page$ /index.php?id=1 [L]
如果要重写每个index.php?id = ID_HERE请使用:
RewriteRule ^page/([^/]*)$ /index.php?id=$1 [L]