I have amended my blog URL with the ending /about/blog/ which is where my blog is located.
Following this I now get /about/blog in front of every sub page of my website. e.g. /about/blog/about/sitemap instead of /about/sitemap
I thought it was because I needed to amend my .htaccess file (as stated by WP) to this:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /about/blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /about/blog/index.php [L]
</IfModule>
But when I amend it to this I get Error 500 Internal Server Error everywhere.
Does anyone have any ideas on how can I fix this problem?
Thanks