我正在使用以下mod rewrite脚本,我想对其进行更改以尝试在特定目录中查找文件,请有人提示我如何实现此目的吗?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
重写需要检查文件名是否在请求的位置,如果失败,它将在目录'/ themes / theme1'中进行检查,最后,当上述两个文件失败时,它将进入/index.php。