.htaccess中如何配置以不加载文件夹?

时间:2018-08-31 09:04:34

标签: .htaccess

我有问题。在我的.htaccess文件中:

RewriteEngine   On
RewriteBase     /
RewriteCond     %{REQUEST_URI} !^(/index\.php|/img|/js|/css|/robots\.txt|/favicon\.ico)
RewriteCond     %{REQUEST_FILENAME} !-f
RewriteCond     %{REQUEST_FILENAME} !-d
RewriteRule     .               /index.html              [L]

当我使用url: http://mywebsite.com/th运行时,“ th”是语言键。 但是在我的项目文件夹中,有“ th”个退出文件夹,并且此网址加载到了“ th”个文件夹中。

那么我如何配置.htaccess忽略'th'文件夹?

0 个答案:

没有答案
相关问题