使用 htaccess 进行简单重定向

发布于 2024-10-21 21:20:01 字数 329 浏览 2 评论 0原文

我知道这是一件简单而快速的事情,但网站将在几个小时内上线,而且我在 htaccess 上没有任何经验,所以我希望有人可以对此提供一些快速帮助。

所以我想要的是我有 html 文件根文件夹。文件为index.html、german.html、swedish.html、spanish.html、danish.html。现在我想要一个 URL,以便德国站点位于 www.domain.com/de swedish www.domain.com/sv english/default 中的 www.domain.com/en 等等。这应该可以用 htaccess 来做吧?

或者有更好的方法吗?

多谢!

I know this is a simple and quick thing, but site is going live within hours and I dont have any experience on htaccess so Im hoping someone could give some quick help with this.

So what I want is that I have html files root folder. Files are index.html, german.html, swedish.html, spanish.html, danish.html. Now I would like to have the URL so that german site would be in www.domain.com/de swedish www.domain.com/sv english/default in www.domain.com/en and so on. This should be possible to do with htaccess right?

Or is there better way to do it?

Thanks alot!

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

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

发布评论

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

评论(1

挽袖吟 2024-10-28 21:20:01

创建一个包含以下内容的 .htacess 文件:

Redirect permanent /german.html http://yourdomain.com/de
Redirect permanent /swedish.html http://yourdomain.com/sv
....

我希望这就是您所希望的并且它有帮助:)

Create a .htacess fil with the following contents:

Redirect permanent /german.html http://yourdomain.com/de
Redirect permanent /swedish.html http://yourdomain.com/sv
....

I hope this is what you ment and that it helps :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文