Hi,
You can modify your .htaccess and remove the permalink generated codes outside the wordpress tags as shown below.
# BEGIN WordPress
# END WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Could be a plugin that is causing it.
Hope this helps.