https, adding pages
Permalink
I setup https and within .htaccess I put:
RewriteRule ^(.*)$http://matt.okanaganit.com/$1 [R,L]
when I access my site edits, adding themes, deleting pages all works fine
but I am unable to add a page from edit or dashboard/sitemap
when I click add page the dialog comes up where I set the page title and meta info, but after clicking add page nothing happens.
also I am unable to change the layout of a page to..
when I remove the bit from .htaccess it works fine
RewriteRule ^(.*)$http://matt.okanaganit.com/$1 [R,L]
when I access my site edits, adding themes, deleting pages all works fine
but I am unable to add a page from edit or dashboard/sitemap
when I click add page the dialog comes up where I set the page title and meta info, but after clicking add page nothing happens.
also I am unable to change the layout of a page to..
when I remove the bit from .htaccess it works fine
I put this in my .htaccess file to send http requests to https
You could try this:
Not sure if it will mess up pretty URL's?
RewriteEngine On RewriteCond %{HTTPS} !on RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Not sure if it will mess up pretty URL's?
I put this in my .htaccess file to send http requests to https
but I forgot to put it all in there
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$http://matt.okanaganit.com/$1 [R,L]
oddly when I punch this in the forum its not displaying properly
where it say http colon slash slash matt.
it should actually show https colon slash slash matt.
in my edit it shows https but the forum only shows the http after the edit...
anyhow I hope this makes my .htaccess a little more clear
but I forgot to put it all in there
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$http://matt.okanaganit.com/$1 [R,L]
oddly when I punch this in the forum its not displaying properly
where it say http colon slash slash matt.
it should actually show https colon slash slash matt.
in my edit it shows https but the forum only shows the http after the edit...
anyhow I hope this makes my .htaccess a little more clear
Put your code in the [code][/code]
See bottom of window
See bottom of window
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://matt.okanaganit.com/$1 [R,L]
this is my .htaccess file, I use it to rewrite all http requests to https
Why have you put that code in your .htaccess file?