首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

伪静态

2012-03-09 
求教:伪静态PHP codeRewriteEngine OnRewriteRule ^/test.xml$ /seophp/test [L]以上是我书写的伪静态的规

求教:伪静态

PHP code
RewriteEngine OnRewriteRule ^/test.xml$ /seophp/test [L]


以上是我书写的伪静态的规则 希望达到的效果是当访问:http://localhost/test.xml时相当于访问http://localhost/seophp/test
为何运行不成功呢 求大侠指教

[解决办法]
RewriteEngine On

RewriteRule ^/(.*)\.xml$ /seophp/$1[L]

试试呢!

热点排行