url重写问题

发布于 2024-10-22 16:11:25 字数 247 浏览 1 评论 0原文

嘿,这是我有问题的例子。我有一个链接:

<a href='/index.php'>link</a>

它将依次转到 domain.com/index.php

现在我该如何做,以便在 URL 重写后,它不会显示 index.html?

我知道我可以用“/”链接到文档根目录,但这对我来说并不适用于所有情况。所以一个简单的重写就很棒了!

Hey, here is the example I have a question about. I have a link:

<a href='/index.php'>link</a>

Which will in turn go to domain.com/index.php

Now how would I make is so that with URL rewrite, it does NOT display index.html after?

I know i can just link to document root with "/" but this is not going to work in all cases for me. So a simple rewrite would be awesome!

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

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

发布评论

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

评论(2

逆蝶 2024-10-29 16:11:25
RewriteEngine On
RewriteRule ^index.php$ / [R=301,L]
RewriteEngine On
RewriteRule ^index.php$ / [R=301,L]
萌吟 2024-10-29 16:11:25

如果你不能像@Pekka建议的那样影响链接,你也可以强制

RewriteCond %{REQUEST_URI} ^/index\.php$ 
RewriteRule ^(.*)$ http://domain.com [R=301,NC,L]

you can also force if you can't influence the links like @Pekka suggested

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