我想将其设为默认值:
从:
mydomain.com/folder/folder/
为:
mydomain.com/folder/folder/index.php
无论如何要做.htaccess
?
答案 0 :(得分:0)
这会将所有两个级别的文件夹从/f1/f2/
重定向到/f1/f2/index.php
,并在地址栏中显示。它没有重定向/f1/f2
或/f1/script.php
(没有斜杠)
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !index\.php [NC]
RewriteCond %{REQUEST_URI} ^/(\w+)/(\w+)/$
RewriteRule .* %1/%2/index.php [R,L]