首页 >后端开发 >php教程 >伪静态异常

伪静态异常

WBOY
WBOY原创
2016-06-06 20:45:481149浏览

<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