我有问题。在我的.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'文件夹?