htaccess设置的问题


RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_\/]+)$ index.php/$1 [L]

目前用以上语句把 xxx.com/index.php/abc 简写为 xxx.com/abc

现在想在此基础上 abc.xxx.com 也同样可以访问 xxx.com/index.php/abc 请问该怎么写。

PS:我已经将abc.xxx.com的ip解析过去了

系统架构 网络安全 php

要自重啊!青年 12 years, 10 months ago

RewriteRule ^.*$ index.php?php=$1 [L]
在index.php中打印$_GET数组.

这样的伪静态后果很严重, 扩展不方便, 我们理应加强流程引向, 让特定的格式转到index, 比如

   
  RewriteRule ^index/(.*)$ index.php?$1 [L]   # 仅对xxx.com/index/aaaa,  xxx.com/index/bbbb之类的有效.
 

这样我们就可以创造第二个入口文件

   
  RewriteRule ^plugin/(.*)$ plugin.php?$1 [L]
 

主要是考虑到安全方面。

noteli answered 12 years, 10 months ago

Your Answer