htaccess:如何重定向到默认页面?
如果用户在浏览器中输入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下配置:
如果您希望重定向是永久的,请将302更改为301。
You can use the following configuration:
If you want the redirection to be a permanent one, change 302 into 301.
或者您可以将您的 custom_page.php 添加为默认索引页
DirectoryIndex custom_page.php ...
Or you can add your custom_page.php as default index page
DirectoryIndex custom_page.php ...