军哥,如和让如下这个虚拟目录支持图片访问?谢谢
server{
listen 80;
#listen [::]:80;
server_name files.abc.com;
index index.html index.htm index.php default.html default.htm default.php;
root/www/wwwroot/abc;
location /file_images/article/{
alias /www/wwwroot/abc/d/file/;
}
include none.conf;
#error_page 404 /404.html;
location ~ [^/]\.php(/|$)
{
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
#include pathinfo.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log off;
}
军哥,如和让如下这个虚拟目录支持图片访问?谢谢,我是刚接触,都是看的教程,这个实在是没有办法,
这个虚拟目录是用来链接附件的 谁给我说一下 谢谢!!! location ^~ /file_images/article/ {
alias /www/wwwroot/abc/d/file/;
} 谢谢军哥,按照你说的 可以了!:)
页:
[1]