分页网址是否友好?

时间:2018-10-12 21:39:16

标签: .htaccess url seo

我有这个

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

但这不起作用,请帮助我。

1 个答案:

答案 0 :(得分:1)

您缺少page部分的脚本扩展名

RewriteRule ^index.php/page/([0-9]+)$ index.php?page=$1