URL改写:将mydomain.com/index.php改为mydomain.com/home


URL rewriting: Change mydomain.com/index.php to mydomain.com/home

我正在使用PHP,我想将此url mydomain.com/index.php更改为此mydomain.com/home,因此编写了以下代码:

RewriteEngine on
RewriteRule home index.php

当我转到mydomain.com/home时,它可以工作但当我转到mydomain.com/index.php时,url不能更改为mydomain.com/home

我该如何解决这个问题呢?

尝试:

RewriteEngine on
#externally redirect "/index.php" to "/home"
RewriteCond %{THE_REQUEST} 's/index'.php
RewriteRule ^ /home [L,R]
#internally map "/home" back to "/index.php"
RewriteRule home index.php

示例

RewriteEngine on
RewriteBase /
RewriteRule index.php http://example.com/home [L,R=301]