我在运行 WordPress 的服务器上。WP 安装在 Document Root 中,下面的 .htaccess 文件控制着每个请求。
我需要做的是在文档根目录下有一个特定的目录,我们称之为“绕过”,自行解决而不是通过 WordPress 运行。
那可能吗?.htaccess 指令可能会是什么样子来实现这一点?
感谢您帮助我解决这个需求。
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ems /ems/index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>