nginx子目录添加子项目,css等资源无法访问

WBOY
发布: 2016-10-12 10:04:11
原创
2030 人浏览过

有两个项目一个是phpcms得,另外一个是yii2.0框架的,服务器使用的是nginx,现在想将yii的这个项目作为子目录直接拿过来 然后通过http://domain.com/子目录 来访问,但是通过配置 /子目录 可以访问index 但是页面的资源文件如图片、css等都无法加载,图片链接为http://domain.com/子目录/public/images/blue_icon.png 但是还是会重定向到子目录下面的index.php 求教问题出在哪里?

server{ listen 80; server_name domain.com; root /Users/xxx/www/project; index index.php; location /{ try_files $uri $uri/ /index.php?$args; autoindex on; } location /blog{ index index.php index.html; try_files $uri $uri/ /blog/index.php?$args; autoindex on; } location ~ ^(.+\.php)(.*)$ { root /Users/xxx/www/project; fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
登录后复制
登录后复制

回复内容:

有两个项目一个是phpcms得,另外一个是yii2.0框架的,服务器使用的是nginx,现在想将yii的这个项目作为子目录直接拿过来 然后通过http://domain.com/子目录 来访问,但是通过配置 /子目录 可以访问index 但是页面的资源文件如图片、css等都无法加载,图片链接为http://domain.com/子目录/public/images/blue_icon.png 但是还是会重定向到子目录下面的index.php 求教问题出在哪里?

server{ listen 80; server_name domain.com; root /Users/xxx/www/project; index index.php; location /{ try_files $uri $uri/ /index.php?$args; autoindex on; } location /blog{ index index.php index.html; try_files $uri $uri/ /blog/index.php?$args; autoindex on; } location ~ ^(.+\.php)(.*)$ { root /Users/xxx/www/project; fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
登录后复制
登录后复制
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!