2

我目前正在尝试使用此脚本为我的网站制作 SEO 友好的网址:

Options +FollowSymLinks  
RewriteEngine On 
RewriteRule ^show/([0-9]+)/$ show.php?phto=$1
RewriteRule ^index/$ index.php

所以我测试了一些东西,我想出了这些问题:当我访问我的网站时:blalba.com/index/我的布局文件不会包含/显示。(使用 layout.inc.php 页眉/页脚系统)

另外我怎样才能让用户可以访问它indexindex/

我不太擅长这个。。

格兹

4

1 回答 1

2

使用此代码更改您的规则(使斜杠可选):

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On

RewriteRule ^show/([0-9]+)/?$ show.php?phto=$1 [L,QSA,NC]
RewriteRule ^index/?$ index.php [L,QSA,NC]

还要确保包含样式、js、图像等始终使用绝对路径,即它应该以/or开头http://

于 2013-09-06T14:24:55.327 回答