htaccess Mod Rewrite home.php将被删除

时间:2013-12-20 12:03:37

标签: regex apache .htaccess mod-rewrite

我有一个index.php页面,它有一个重定向,可以转到home.php

无论如何使用htaccess我可以将home.php隐藏起来,以便用户只看到地址栏中的域名?

1 个答案:

答案 0 :(得分:0)

确定您可以在DOCUMENT_ROOT/.htaccess文件中使用此重写规则:

DirectoryIndex index.php

RewriteEngine On

RewriteCond %{THE_REQUEST} /index\.php [NC]
RewriteRule ^(.*?)index\.php$ /$1 [L,R=302,NC,NE]