2008
05-18
05-18
nginx居然不兼容apache的.htaccess文件,无奈在配置文件中修改.
server
{
listen 80;
location / {
if (!-f $request_filename){
rewrite (.*) /index.php;
}
}
server_name sunboyu.cn www.sunboyu.cn *.sunboyu.cn somecode.cn www.somecode.cn *.somecode.cn;
index index.html index.htm index.php;
root /***/;
access_log /***/host.access.log;
}
这样即可