我想做的是将任何url重定向到相同的URL,但没有在%20之后的文本
我在我的wordpress博客前有一个不错的URL。 --
https://test.com/post/21/ coped from http://another.website.com
有时,我在其他网站上放置一个网址,当有人尝试在该网址后立即复制该网址时,该网址会放置其版权,因此该网址-
RewriteEngine on
RewriteRule ^(.*)/[\s%20].*$ /$1 [R=301,L]
# 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 WordPress
现在我在.htaccess文件中了
viewer.impl.lights
因此,在使它像这样后,它确实将我重定向到%20之前的url,但是现在还有另一个问题。我的图片现在具有错误的网址,并且由于我无法保存帖子,因此制动了一些wordpress路线。
有人知道如何正确进行此类重定向吗?