子域到新域重定向

发布于 2024-10-30 17:39:50 字数 283 浏览 0 评论 0原文

我需要简单的代码来做这样的事情。

例如,我的旧网站页面是 www.old.com/homerun.html,我想重定向到新页面 www.new.com/homerun/,或 <代码>www.old.com/themes/newpage.html 到www.new.com/themes/newpage/

所以基本上它将替换域名并删除 .html

这可以在 htaccess 上完成吗?

I need simple code to do something like this.

For example my old site page is www.old.com/homerun.html, I want to redirect to a new page www.new.com/homerun/, or www.old.com/themes/newpage.html to www.new.com/themes/newpage/.

So basically it will replace the domain and remove the .html.

could this be done on htaccess?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你是暖光i 2024-11-06 17:39:50

尝试类似以下内容(在旧主机上,根路径)

RewriteEngine On
RewriteBase /

RewriteRule ^(.+?)(.html)$ http://www.new.com/$1/ [L,R]

Try something like the following (on the old host, root path)

RewriteEngine On
RewriteBase /

RewriteRule ^(.+?)(.html)$ http://www.new.com/$1/ [L,R]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文