|
项目目录是这样的file:///C:\Users\youlong\AppData\Roaming\Tencent\Users\314555630\QQ\WinTemp\RichOle\`P3KZ86]L]NNJX0ZTB(Q%~S.jpgadmin/ 后台管理
butwhy/ 前台
www/admin.php 走后台管理
www/index.php
前台访问正常,但是打开后台管理报404错误
- server {
- listen 80;
- server_name www.abc.com;
- index index.html index.htm index.php;
- root /data/www/butwhy/www;
-
-
- location /index.php {
- index index.php;
- if (!-e $request_filename) {
- rewrite ^/(.*)$ /index.php?$1 last;
- break;
- }
- }
-
- location ~ .*\.(php|php5)?$
- {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- include fastcgi.conf;
- }
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
- {
- expires 30d;
- }
- location ~ .*\.(js|css)?$
- {
- expires 1h;
- }
- access_log /alidata/log/nginx/access/butwhy.log;
- }
复制代码
file:///C:\Users\youlong\AppData\Roaming\Tencent\Users\314555630\QQ\WinTemp\RichOle\`P3KZ86]L]NNJX0ZTB(Q%~S.jpg
|
|