我将 wordpress 安装在http://example.com
. 我创建了名为 world 的新文件夹http://example.com/world
,我需要 htaccess 单独处理该特定文件夹,这可能吗?
下面给出了我需要用于文件夹世界的 htaccess。我在 rootfolder htaccess 中添加了这个,我得到了内部服务器错误,因此我不想打扰根文件夹。
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule (.*)(\/?)$ / [QSA,NC,L]
我的根文件夹 htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteCond %{SERVER_PORT} ^443$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress