I've been reading around old threads, but can't seem to figure this one out. I've installed the cert, and I've changed the base to https:// in ACP, but when I type in https://forum it reverts to http://
I wonder if it might be due to a root redirect from www. to http://? Here is the root .hta the site is multisite with forum installed as a sub directory domain/forum
RedirectMatch 301 ^/subblog1/([0-9]{4})/([0-9]{2})/(.*)$ http://domain.com/subblog1/$3
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^blog\/category\/inv\/$ "http\:\/\/domain\.com\/products\/post1\-an\-introduction\-and\-analysis\/" [R=301,L]
# Use PHP5 Single php.ini as default
#AddHandler application/x-httpd-php5s .php
RewriteCond %{REQUEST_URI} !^/forum
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule wp-content/thesis/skins/(.*)/css.css wp-admin/admin-post.php?action=thesis_do_css
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPress
</IfModule>
Any thoughts on how to get it to stick on https:// ?
I wonder if it might be due to a root redirect from www. to http://? Here is the root .hta the site is multisite with forum installed as a sub directory domain/forum
RedirectMatch 301 ^/subblog1/([0-9]{4})/([0-9]{2})/(.*)$ http://domain.com/subblog1/$3
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.domain\.com$
RewriteRule ^blog\/category\/inv\/$ "http\:\/\/domain\.com\/products\/post1\-an\-introduction\-and\-analysis\/" [R=301,L]
# Use PHP5 Single php.ini as default
#AddHandler application/x-httpd-php5s .php
RewriteCond %{REQUEST_URI} !^/forum
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule wp-content/thesis/skins/(.*)/css.css wp-admin/admin-post.php?action=thesis_do_css
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPress
</IfModule>
Any thoughts on how to get it to stick on https:// ?