Permalink on https site
-
On my https://mysite.com my Permalink is set to this:
https://mysite.com/2012/10/23/sample-post/
However, when I create or edit a post the Permalink is set as:
http://mysite.com/2012/10/23/sample-post/
Why doesn’t my Permalink setting match the Permalink URL in a post?
This is what is in my .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine OnRewriteCond %{SERVER_PORT} !^443$
RewriteCond %{REQUEST_URI} /stats$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
The permissions are set at 604. I tried changing this to 777 for the heck of it and that did not work either.
Any suggestions to make my Permalink in my post to have a https: URL instead of http?
The topic ‘Permalink on https site’ is closed to new replies.