[eluser]Tejas D[/eluser]
Hello,
I want my entire website(all pages) works or open only with https.
currently it perfectly works with http.
now, I want to work only with https.
what changes I need to do.I need detail steps how to use https with codeigniter.
Please suggest on this.
[eluser]Tejas D[/eluser]
Hello Sir,
Firstly Thank you.
Yes, I edited my .htaccess file and results in requesting the page through https.
But whether I need :
- to replace http with https in the code.
- to have ssl cert. and key.
- to edit httpd.conf to listen 443. etc
and what other changes I need to do.
Please will you see my post 'opera cache issue'.
[eluser]PhilTem[/eluser]
Yes, you will not only need to add a ReWrite from *:80 to *:443, you will also need to modify your
- ports.conf
- httpd.conf
- vhost.conf
- ssl.cert, ssl.key, ssl.pem (or somehow get a ssl certificate, even self-signed works)
to make first of all your server listen on port 443 and then you can make changes to your site to use links pointing to https:// instead of http://
[eluser]Tejas D[/eluser]
Hi PhilTem,
The entire process is little bit lengthy.But I require https for opera, as it doesnot reloading
the page on clicking back button of browser.
somewhere I read problem can be solved by using https for opera.So, I am trying to use https.
But my entire website develop & work with http.
I want reload the page on clicking back button of the browser.
I used the below code As:
public function clear_cache(){
$this->output->set_header(“Cache-Control: no-store, no-cache, must-revalidate, no-transform, max-age=0, post-check=0, pre-check=0”);
$this->output->set_header(“Pragma: no-cache”);
}
This above code works fine with firefox,chrome.But doesnot work with opera.
Please can you give me solution on this.I want my website work also on opera.
Thanks in advance.