Reputation: 41
I have uploaded a Wordpress site under the following subdomain - http://wptest.paddingtonterraces.com.au/
I am getting '500 Internal Server Errors' for everything that is grabbed from outside the root directory.
Any help with resolving this would be greatly appreciated.
EDIT:
.htaccess rewrites:
<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>
SOLVED:
Had to remove /paddington-terraces from the Rewrite paths.
Upvotes: 0
Views: 2401
Reputation: 455
Try To deactivate plugins and check
you can deactivate plugin without using wp-admin. Simply login with ftp and rename the plugin name for example: 'plugin_name' change to 'plugin_name_rename'.. I faced same issue .. and my problem was solved by deactivating plugin :)
Upvotes: 0
Reputation: 8301
A few possibilities:
My bet is a bad plugin. Good luck.
Upvotes: 1