将http重定向到https(仅管理面板不是前端)

时间:2014-12-30 11:05:25

标签: wordpress .htaccess mod-rewrite

我为SSL安装了wordpress,但https只显示admin panel,我想在我已添加.htaccess个文件的所有前端页面上显示它根目录但没有完成。

<IfModule mod_rewrite.c> 
  RewriteEngine On 
  RewriteBase / 

  RewriteRule ^index\.php$ - [L] 
  RewriteCond %{REQUEST_FILENAME} !-f 
  RewriteCond %{REQUEST_FILENAME} !-d 
  RewriteRule . /index.php [L] 
</IfModule>

1 个答案:

答案 0 :(得分:0)

wp-config.php中的

定义了这个

<?php  define('FORCE_SSL_ADMIN', true); ?>