Wordpress管理页面.htaccess例外

时间:2016-12-17 15:30:34

标签: php wordpress .htaccess redirect

我有一个用wordpress制作的网站(这是一个多语言网站),我正在修改.htaccess文件,以便进行一些重定向。我的页面现在是例如:https://example.es

我想将所有内容重定向到此页面(即使您键入example.es/en或www.example.es/en或http://www.example.es/es ...所有变体)

我的.htaccess现在看起来像这样:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.example.es$ [NC]
RewriteCond %{REQUEST_URI} jh73820h.htm$ [NC]
RewriteRule .* - [L]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://example.es/$1 [R=301,L,QSA]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

虽然有效,但当我尝试使用Wordpress(https://example.es/wp-admin/)转到我的管理页面时,我正在重定向到https://example.es/es/wp-admin/https://example.es/en/wp-admin/

有谁知道如何为此页面制作例外?当网站是wp-admin时,我不想重定向,它应该是这样的:https://example.es/wp-admin/

1 个答案:

答案 0 :(得分:3)

尝试在RewriteCond %{REQUEST_URI} !wp-admin之前添加RewriteEngine on

如果没有效果,请点击以下链接;将RewriteCond %{REQUEST_URI} !wp-admin放在# BEGIN Wordpress

之前

看这里: Redirect Visitors to new url but exclude images and admin