Welcome Guest, Not a member yet? Register   Sign In
ssl issue in codeigniter??? help needed
#2

[eluser]InsiteFX[/eluser]
Hi,

I did not write this it was written by SKunKbad...

I recently had the task of setting up some forms in a shared SSL environment. One of the first things I noticed was that I was being redirected back to the non-SSL environment due to a little URL rewrite I placed in an .htaccess file so that non-www prefixed requests would be rewritten as the www version. I fixed the issue by modifying the rewrite conditions before the actual rewrite rule. I thought this might help somebody someday, so check it out:

Code:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.mywebsite\.com [NC]
RewriteCond %{HTTP_HOST} !^secure1.mywebhost.com [NC]
RewriteRule ^(.*) http://www.mywebsite.com/$1 [L,R=301]

Enjoy
InsiteFX


Messages In This Thread
ssl issue in codeigniter??? help needed - by El Forum - 03-19-2010, 07:31 AM
ssl issue in codeigniter??? help needed - by El Forum - 03-19-2010, 10:22 AM
ssl issue in codeigniter??? help needed - by El Forum - 11-29-2010, 02:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB