php 防止直接访问主题/插件文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 防止直接访问主题/插件文件相关的知识,希望对你有一定的参考价值。

# Restrict direct access to PHP files from theme or plugin directories
# Place in root .htaccess file

# Restrict direct access to PHP files from plugin directories

RewriteCond %{REQUEST_URI} !^/wp-content/plugins/file/to/exclude\.php

RewriteCond %{REQUEST_URI} !^/wp-content/plugins/directory/to/exclude/

RewriteRule wp-content/plugins/(.*\.php)$ - [R=404,L]


# Restrict direct access to PHP files from theme directories

RewriteCond %{REQUEST_URI} !^/wp-content/themes/file/to/exclude\.php

RewriteCond %{REQUEST_URI} !^/wp-content/themes/directory/to/exclude/

RewriteRule wp-content/themes/(.*\.php)$ - [R=404,L]
// Prevent Direct Access to Theme/Plugin files
// Place at the top of your theme or plugin files

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

以上是关于php 防止直接访问主题/插件文件的主要内容,如果未能解决你的问题,请参考以下文章

防止直接 url 访问 php 文件

PHP PHP - 防止直接访问php文件

防止直接访问 php 包含文件

wordpress博客D8主题插件WP-UserAgent用法 PHP

防止直接访问由ajax函数调用的文件[重复]

用户直接访问php文件时如何使页面空白?