开发者

How do I 301 redirect a bad incoming link such as www.site.com / or www.site.com/ <space after it

开发者 https://www.devze.com 2023-02-06 05:35 出处:网络
I hav开发者_如何学编程e bad incoming links which webmaster tools shows, how do I fix the issue, I\'ve tried all kinds of different 301 rewrites and redirects, nothing seems to work.You could redirect

I hav开发者_如何学编程e bad incoming links which webmaster tools shows, how do I fix the issue, I've tried all kinds of different 301 rewrites and redirects, nothing seems to work.


You could redirect 'too short' URLs like site.com/%20 (waste space) or site.com/. (waste dot) to the main page:

RewriteEngine on
RewriteRule ^.{1,3}$ / [R=301,L]
0

精彩评论

暂无评论...
验证码 换一张
取 消