1、如何让nginx列目录
在对应的网站配置段中,加入:
location /_files
{
root /home/blog.creke.net;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
解释一下:
root是指当前的网站根文件......
前情提要:
当然,推荐的选项是设置密码保护,这意味着你仍然可以在任何地方连接到 wp-admin 目录,但我们增加了一道防线,以防越权操作。
.htaccess 文件WP � ADMIN 中的 .HTACCESS 文件如下:#this file should be outside your webroot.AuthUserFile /srv/www/user1/.htpasswdAuthType BasicA......