我在服务器的根目录中创建了一个文件夹。尝试从URL访问它时会出现404错误。
如何创建.htaccess来访问文件夹中的文件夹和文件?
答案 0 :(得分:0)
试试这个.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>