htaccess 重定向网站。com/folder/content 到 subdomain.website。com/content
htaccess redirecting website.com/folder/content to subdomain.website.com/content
我最近将一个 Wordpress 博客从网站com/wordpress 移到了 help.website.com。现在我想将指向旧地址的链接重定向到新地址。
我删除了 /wordpress 文件夹中除 .htaccess 之外的所有内容。此文件包含以下代码:
RedirectMatch 301 (.*) http://www.help.website.com
它重定向了我的旧链接,但我不知道如何从中删除 /wordpress。
例如,如果我访问网站。com/wordpress/article-categories/example-article/ 它会将我发送到 help.website。com/wordpress/article-categories/example-article/ ,但我想转至 help.website.com/article-categories/example-article/。我该如何实现?
尝试
RedirectMatch 301 ^/wordpress/(.*)$ http://www.help.website.com/
这将匹配 文件夹 而不会捕获它。
我最近将一个 Wordpress 博客从网站com/wordpress 移到了 help.website.com。现在我想将指向旧地址的链接重定向到新地址。
我删除了 /wordpress 文件夹中除 .htaccess 之外的所有内容。此文件包含以下代码:
RedirectMatch 301 (.*) http://www.help.website.com
它重定向了我的旧链接,但我不知道如何从中删除 /wordpress。
例如,如果我访问网站。com/wordpress/article-categories/example-article/ 它会将我发送到 help.website。com/wordpress/article-categories/example-article/ ,但我想转至 help.website.com/article-categories/example-article/。我该如何实现?
尝试
RedirectMatch 301 ^/wordpress/(.*)$ http://www.help.website.com/
这将匹配 文件夹 而不会捕获它。