我有这个
http://localhost/index.php?page=1
我想展示这个
http://localhost/index.php/page/1
我现在在.ht上访问此代码:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^index/([0-9]+)$ index.php?page=$1
但这不起作用,请帮助我。
答案 0 :(得分:1)
您缺少page
部分的脚本扩展名
RewriteRule ^index.php/page/([0-9]+)$ index.php?page=$1