Remove Invalid Redirects.
-
Hello community i came up with a strange problem and i think it’s the .htacces causing the problem. I run a wordpress site and i check it with a SEO toolkit. When the report finishes it come up with some violations:
“The link to “https://www.example.com/?p=11” has resulted in HTTP redirection to “https://www.example.com/example/”.
-I activated permalinks inside wordpress.
-I using SEO by yoast plugin.
-My .htaccess file is:# BEGIN 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>
# END WordPressAny idea how can i remove invalid redirections ?
Thanks all !
- The topic ‘Remove Invalid Redirects.’ is closed to new replies.