我有.htaccess
文件帮助我从我的网页中删除文件扩展名,我应该说它工作正常,但在访问网站文件夹(domain.com/folder_name/)
时遇到问题,因为我收到404错误名称为文件夹(domain.com/folder_name.php)
在错误消息中有扩展名。下面是我的.htaccess代码
RewriteEngine On
RedirectMatch permanent ^/detail/((css|js)/.*) /$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]
答案 0 :(得分:0)
我终于明白了;我所要做的就是在受影响的文件夹中创建另一个.htaccess然后添加以下代码行:
RewriteEngine Off
一切都解决了