.htaccess 重定向

发布于 2024-10-26 12:22:29 字数 262 浏览 2 评论 0原文

我想重定向 http://localhost/xyz index.php。该index.php位于/var/www/xyz/中。我有一个特定的理由这样做。

RewriteRule http://localhost/xyz index.php 不起作用,我不知道为什么

谢谢 让

I want to redirect http://localhost/xyz index.php. This index.php is in the /var/www/xyz/. I have a specific reason to do this.

RewriteRule http://localhost/xyz index.php does not work, I have no idea why

Thanks
Jean

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

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

发布评论

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

评论(1

故事灯 2024-11-02 12:22:29

将规则应用于路径,而不是 url (=leave http://localhost)。

RewriteRule /xyz /index.php

此规则也适用于 /bla/xyz 和 /xyzabc。甚至到/blah/xyzabc。可以更改第一个参数以禁止这样做:

RewriteRule ^/xyz$ /index.php

如果您想了解有关重写规则的更多信息,我认为备忘单对您很有用:http://www.addedbytes.com/cheat-sheets/mod_rewrite-cheat-sheet/ 也许谷歌上有一些重写规则的例子。

Apply the rules to the path, not to the url (=leave http://localhost).

RewriteRule /xyz /index.php

This rule will also apply to /bla/xyz and to /xyzabc. Even to /blah/xyzabc. The first parameter can be changed to forbid this:

RewriteRule ^/xyz$ /index.php

If you want to learn more about rewriterules, I think the cheatsheet would be useful for you: http://www.addedbytes.com/cheat-sheets/mod_rewrite-cheat-sheet/ And maybe google for some rewriterule examples.

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