拜托,这让我很头疼!
我将旧网站(goo.gl/onQ3UM)重定向到新目录。 我把旧网站的所有网址都重定向到新的主页(我现在意识到这是一个错误,因为我在上周初获得了大量的404和404软件。)
所以我现在尝试使用301重定向将每个页面单独重定向到最接近的匹配页面。
我将htaccess文件更改为: 重定向301 / wp / new-homepage-feb162 / wp / home [(似乎工作正常)] RedirectMatch 301 /mjs/weddings/(.*)/ wp / home / grand-country-house-weddings-and-receptions-dorset /
当我在GSC中执行'抓取'时goo.gl/onQ3UM/mjs/weddings/217-a-testimonial.html?7bffea3334ebaaaf8a005d78b5e86b8e=300b60a21ae5159ab1e8cf12b7634b7b 它显示为重定向到/ wp / home / grand-country-house-weddings-and-receptions-dorset /?7bffea3334ebaaaf8a005d78b5e86b8e = 300b60a21ae5159ab1e8cf12b7634b7b
这几乎是对的,但我不想要?7bffea3334ebaaaf8a005d78b5e86b8e = 300b60a21ae5159a b1e8cf12b7634b7b
我如何摆脱它?!!!
答案 0 :(得分:0)
你写这篇文章的方式非常令人困惑......但根据我的理解,你是否试图让你的网址在被重定向后看起来更“漂亮”?
SELECT mean(value) as value INTO mydb.aggregate.cpu_usage FROM cpu_usage GROUP BY *
SELECT mean(value) as value INTO mydb.aggregate.temperature FROM temperature GROUP BY *
所以上面会变成:
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
#To go from URL /example/example1/example2/example3
#To go to URL /example3
RewriteRule ^/example/example1/example2(/.+)$ /$1 [R=302,L,NC]
分为:
www.example.com/example/example1/example2/example3