回复详情

admin

2016-7-17 0

如果使用了vhost 就需要到

/usr/local/nginx/conf/vhost/你的专属.conf 

编辑这个conf  

找到

#error_page 404 /404.html;
include enable-php.conf;

在下面增加

if (!-e $request_filename) {
 rewrite  ^(.*)$  /index.php?s=$1  last;
 break;
  }

形成

        include other.conf;
        #error_page   404   /404.html;
        include enable-php.conf;
if (!-e $request_filename) {
 rewrite  ^(.*)$  /index.php?s=$1  last;
 break;
  }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

保存 重启Nginx即可

csir0815

2018-1-22

2018新模板怎么还LOGO

加载更多

登陆后才可发表内容