0

我在运行 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>
4

1 回答 1

1

如果您在 Document Root 中有一个目录,并且在 WordPress 中没有任何同名的页面/帖子,那么您不需要任何 .htaccess 规则。

确保您没有任何页面或通过相同的永久链接发布,只有这样它才能在没有任何 .htaccess 规则的情况下工作。

于 2012-10-07T18:59:14.487 回答