您好我有一个wordpress网站,我想在根目录中创建一个自定义文件夹,该文件夹将独立于wordpress。我必须使用什么重写规则才能访问该文件夹? 我已经把
了RewriteRule ^clients? /clients/index.php [L]
当前的htaccess文件
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^clients? /clients/index.php [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
当我访问该文件夹时,我收到内部服务器错误500
答案 0 :(得分:0)
您必须拥有无限重写循环,请参阅this answer。试试这个:
...
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^clients? /clients/index.php [L]
...
为了完美,您可能还想添加QSA
和NC
标记。