kannu Posted February 4, 2008 Share Posted February 4, 2008 hello, i have godaddy ssl installed on my website, and i am using the following code RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R] This makes the entire website come as "https" however i only want certain pages to come in "https" and the rest in "http". can anyone please help me out. i would really appreciate the help. thanks Quote Link to comment Share on other sites More sharing options...
madmax Posted February 4, 2008 Share Posted February 4, 2008 If I'm not mistaken your rule says - if server port is NOT 443 (HTTPS) THEN redirect everything as HTTPS - no surprise then! Your RewriteRule requires RewriteCond prefix(es) that simply include the appropriate pages (using regex most possibly) Alternatively you could put a regex match in the rewrite rule instead of ^.*$ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.