Web Hosting Offers
See the new scripts recently added to Dynamic Drive. Click here.
Original, practical CSS codes and examples such as CSS menus for your site.
    Search code samples  
 
  Keyword
 
 
 
   
 
 
  Code Samples
 
ASP
CSS
Dhtml
Html
Javascript
PHP
 
   
     LOGIN HERE  
 
Username
Password
Forgot Password
Verify Signup
 
 
 

PHP >> General

How can I redirect all http (non-secure port 80) requests to https (Secure port 443)

Visitor Ratings (0) :

Description
You can use the .htaccess method using mod_rewrite as follows

RewriteEngine on
RewriteCond %{SERVER_PORT} =80
RewriteRule ^(.*) https://%{SERVER_NAME}%{REQUEST_URI}

Any good webhost will have mod_rewrite installed and allow .htaccess files.
Code
Select All
 Rate this Resource