htaccess:如何重定向到默认页面?

发布于 2024-11-07 04:57:51 字数 181 浏览 1 评论 0原文

如果用户在浏览器中输入 www.xyz.com/some_folder_name/ ,我需要使用 htaccess 将用户重定向到 www.xyz.com/some_folder_name/custom_page.php ,即没有指定具体php页面的情况。

有什么建议吗?

I need to redirect the user using htaccess to www.xyz.com/some_folder_name/custom_page.php if the user enters www.xyz.com/some_folder_name/ , in the browser, that is, in the situation, when no specific php page has not been specified.

Any suggetions?

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

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

发布评论

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

评论(2

绮筵 2024-11-14 04:57:51

您可以使用以下配置:

RewriteRule ^some_folder_name/?$ /some_folder_name/custom_page.php [L,R=302]

如果您希望重定向是永久的,请将302更改为301。

You can use the following configuration:

RewriteRule ^some_folder_name/?$ /some_folder_name/custom_page.php [L,R=302]

If you want the redirection to be a permanent one, change 302 into 301.

¢蛋碎的人ぎ生 2024-11-14 04:57:51

或者您可以将您的 custom_page.php 添加为默认索引页

DirectoryIndex custom_page.php ...

Or you can add your custom_page.php as default index page

DirectoryIndex custom_page.php ...

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