具有相同名称目录(外部目录)的index.html文件

时间:2018-10-01 22:15:31

标签: php html html5 .htaccess permissions

我有一个目录:/ public / aa / 1co

index.html文件与以下目录具有相同的名称:1co.html 但位于路径:/ public / aa /上,而不是在/ public / aa / 1co上,因此无法正常工作。 (第403页权限)

但是当我将文件移至路径:/ public / aa / 1co并将其名称更改为:index.html时,工作正常。

我的问题:

我有数千个文件的类型:1co.html目录

我的htaccess在这里:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]

我如何才能在所有目录下正常工作?

有什么主意吗?

非常感谢您!

0 个答案:

没有答案