Nginx开启目录浏览、下载、流控、访问限制功能
原创
©著作权归作者所有:来自51CTO博客作者无锋剑客的原创作品,请联系作者获取转载授权,否则将追究法律责任
省略nginx其它配置,单独列举一个独立虚拟主机配置;
server {
listen 80;
server_name www.domain.com;
proxy_redirect off;
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
#将访问域名后面跟wp-admin请求的,将在www.domain.com/wp-admin后面自动补上"/",即访问请求地址修改为 www.domain.com/wp-admin/.
location / {
root /home/wwwroot/blog.ptmind.co.jp;
index index.php index.html index.htm;
location ~ .*\.(php|php5)?$
{
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}
}
}