我已在以下子域名下载了一个Wordpress网站 - http://wptest.paddingtonterraces.com.au/
对于从根目录外部获取的所有内容,我收到“500内部服务器错误”。
非常感谢任何有关解决此问题的帮助。
修改
.htaccess重写:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /paddington-terraces/
RewriteRule ^index\.php$ - [L]
RewriteRule ^css/(.*) /paddington-terraces/wp-content/themes/retlehs-roots-g2368ac2/css/$1 [QSA,L]
RewriteRule ^js/(.*) /paddington-terraces/wp-content/themes/retlehs-roots-g2368ac2/js/$1 [QSA,L]
RewriteRule ^img/(.*) /paddington-terraces/wp-content/themes/retlehs-roots-g2368ac2/img/$1 [QSA,L]
RewriteRule ^plugins/(.*) /paddington-terraces/wp-content/plugins/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /paddington-terraces/index.php [L]
</IfModule>
解决:
必须从重写路径中删除 / paddington-terraces 。
答案 0 :(得分:1)
一些可能性:
我的赌注是一个糟糕的插件。祝你好运。
答案 1 :(得分:0)
尝试停用插件并检查
你可以在不使用wp-admin的情况下停用插件。只需使用ftp登录并重命名插件名称,例如:'plugin_name'更改为'plugin_name_rename'..我遇到了同样的问题..我的问题通过停用插件解决了:)