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

时间:2011-05-12 04:45:11

标签: .htaccess

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

任何建议?

2 个答案:

答案 0 :(得分:2)

您可以使用以下配置:

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

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

答案 1 :(得分:0)

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

DirectoryIndex custom_page.php ...