WAMP Wordpress 505 Internal Server Error

117 Views Asked by At

Spent way to long on this and am just running in circles. Probably just a basic stuff up but it's doing my head in.

I'm developing a Wordpress site with a custom theme. The assets contained within the theme folder are 505'ing, I'm calling my assets as such:

<img src="<?php echo get_template_directory_uri(); ?>/assets/art/logo.png" width="130" height="130" alt="logo" />

I have uncommented:

LoadModule rewrite_module modules/mod_rewrite.so

And my .htaccess looks as followed:

# BEGIN WordPress
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /mysite/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /mysite/index.php [L]
</IfModule>

# END WordPress

I completely uninstalled WAMP and reisntalled but still having the same issue. Any help would be greatly appreciated.

Thanks!

0

There are 0 best solutions below