在Nginx config中的服务器块中,我已经放置了:
location ~* /wp-content/.*.php$ {
deny all;
access_log off;
log_not_found off;
}
但是,如果我在web浏览器中手动输入:
https://www.example.com/wp-content/themes/mytheme/functions.php
文件仍在执行。我错过了什么?
也在我的wp-config
我有
/** Absolute path to the WordPress directory. */
if ( !defined(\'ABSPATH\') )
define(\'ABSPATH\', dirname(__FILE__) . \'/\');
这是否相关和/或必需?