我正在尝试添加一个重写规则,该规则将指向插件中的文件。这可以添加到插件、主题或中。htaccess文件。
主题函数中的当前代码。php看起来像:
// Add Custom Rewrite Rules
function custom_rewrite_basic() {
flush_rewrite_rules();
add_rewrite_rule(\'^leaf/([0-9]+)/?\', \'wp-content/plugins/my-plugin/index.php?leaf=$matches[1]\', \'top\');
}
add_action(\'init\', \'custom_rewrite_basic\');
Note: 我正在尝试在基于路径的子域的多站点网络上执行此操作。