2
如果blah.com/hello/index.php
不存在,是否有可能(使用.htaccess大概?)自動將blah.com/hello
重定向到blah.com/hello.php
?如果索引不存在,重定向到php頁面
但是,如果有index.php
,我仍然想顯示沒有重定向。
如果blah.com/hello/index.php
不存在,是否有可能(使用.htaccess大概?)自動將blah.com/hello
重定向到blah.com/hello.php
?如果索引不存在,重定向到php頁面
但是,如果有index.php
,我仍然想顯示沒有重定向。
嘗試:
RewriteEngine on
#if /foo/index.php is not a file
RewriteCond %{REQUEST_FILENAME}\.index.php !-f
#then redirect /foo to /foo.php
RewriteRule ^([^./]+)/?$ /$1.php [NC,L,R]
謝謝!這似乎工作得很好:)是否有任何限制/這種方法的警告,我應該知道? –