我开发了一个可以在单个站点WP上正常工作的插件 但是当在带有子域的WPMU上测试时,我得到404 Not Found错误。
奇怪的是,即使收到错误消息,内容也会被加载 - 但内容永远不会显示。
您可以在此处看到截图:
http://www.stiengenterprises.com/download/tmp/jQuery_load_error.png
jQuery代码如下所示:
jQuery.post("/wp-content/plugins/wp-eventcal/eventcal_jquery.php", { instance: 'getEvent', eventID: eventID },
function(event)
{
alert(event); // For testing - never fires
}, "json");
有关如何解决此问题的任何建议?
的.htaccess
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPress
答案 0 :(得分:6)
发生此问题的原因是您的eventcal_jquery.php
未包含在Wordpress框架中,因此在调用时,wp会返回404.只需在{{header('HTTP/1.1 200 OK');
中包含wp-blog-header.php后再添加eventcal_jquery.php
1}}