首頁 >後端開發 >php教程 >伪静态异常

伪静态异常

WBOY
WBOY原創
2016-06-06 20:45:481153瀏覽

<code><ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteRule ^(.*)\.html$ index.php?g=portal&m=index&a=$1
</ifmodule>
</code>

http://www.test.com/index.php?g=portal&m=index&a=index
http://www.test.com/index.php?g=portal&m=index&a=services
http://www.test.com/index.php?g=portal&m=index&a=partner
......
转化成
http://www.test.com/index.html
http://www.test.com/services.html
http://www.test.com/partner.html
....

首页的时候导航显示已经实现伪静态
可是一跳到其他的页面,比如services partner
又变成了http://www.test.com/index.php?g=portal&m=index&a=partner
不明白?

回复内容:

<code><ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
RewriteRule ^(.*)\.html$ index.php?g=portal&m=index&a=$1
</ifmodule>
</code>

http://www.test.com/index.php?g=portal&m=index&a=index
http://www.test.com/index.php?g=portal&m=index&a=services
http://www.test.com/index.php?g=portal&m=index&a=partner
......
转化成
http://www.test.com/index.html
http://www.test.com/services.html
http://www.test.com/partner.html
....

首页的时候导航显示已经实现伪静态
可是一跳到其他的页面,比如services partner
又变成了http://www.test.com/index.php?g=portal&m=index&a=partner
不明白?

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn