我如何 301 重定向特定页面以删除部分 URL?
How do I 301 redirect specific pages to remove part of the URL?
每个 URL 开头为:
https://example.com/usa/example-1/
我想重定向到 URL,example-1
更改为 example-2
:
https://example.com/usa/example-2/
例如,这个 URL:
https://example.com/usa/example-1/state/city/
将重定向到:
https://example.com/usa/example-2/state/city/
等等
你能帮忙吗?我总是很难使用 .htaccess
所以我更喜欢在测试前询问。
在 .htaccess
文件的 top 处尝试类似以下内容:
RewriteRule ^(usa)/example-1/(.*) //example-2/ [R=301,L]
每个 URL 开头为:
https://example.com/usa/example-1/
我想重定向到 URL,example-1
更改为 example-2
:
https://example.com/usa/example-2/
例如,这个 URL:
https://example.com/usa/example-1/state/city/
将重定向到:
https://example.com/usa/example-2/state/city/
等等
你能帮忙吗?我总是很难使用 .htaccess
所以我更喜欢在测试前询问。
在 .htaccess
文件的 top 处尝试类似以下内容:
RewriteRule ^(usa)/example-1/(.*) //example-2/ [R=301,L]