我正在尝试使用.htaccess文件重写网址,以便我从index.php?p = front转到/ front,它就像一个魅力,但当我尝试制作多个“文件夹”时,如/ forum / 123123(线程ID)它显示了索引页面的无css版本。这是我的.htaccess:
RewriteEngine On
RewriteBase /
DirectoryIndex index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?404
我检查索引中是否设置了$_GET['404']
,如果是,我处理所有内容。但它不起作用,因为它只是显示索引的无css版本,我做错了什么?