你的还没有搞掂?其实官方已经有的了。
http://wenda.anwsion.com/question/3089
如果是你安装在网站根目录下:
nginx:在对应的nignx.conf文件里面添加
location / {
if (!-e $request_filename)
{
rewrite (.*) /index.php;
}
}
Apache:在对应的httpd.conf或者.htaccess里面添加
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
IIS6 Rewrite组件:在对应的配置文件httpd.ini里面添加
CacheClockRate 3600
RepeatLimit 32
RewriteRule /static/(.) /static/$1
RewriteRule /uploads/(.) /uploads/$1
RewriteRule /(.*) /index.php/$1
阅读全文
收起全文