Go Back   CodingForums.com > :: Server side development > Apache configuration

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-12-2011, 12:22 PM   PM User | #1
mathceleb
Regular Coder

 
Join Date: Mar 2010
Posts: 235
Thanks: 39
Thanked 6 Times in 6 Posts
mathceleb is an unknown quantity at this point
URL Rewrite for www,http

I would like to redirect the following urls to https://www:
  1. www.
  2. http://
  3. https://

Below is what I have so far
PHP Code:
RewriteEngine On
RewriteCond 
%{HTTP_HOST} !^www. [NC,OR]
RewriteCond %{HTTP_HOST} !^http: [NC]
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] 
mathceleb is offline   Reply With Quote
Old 10-22-2011, 01:02 PM   PM User | #2
billigseo
New to the CF scene

 
Join Date: Oct 2011
Location: Oslo
Posts: 1
Thanks: 0
Thanked 1 Time in 1 Post
billigseo is an unknown quantity at this point
Smile redirect

I think this would work:


PHP Code:
RewriteEngine on
RewriteCond 
%{HTTP_HOST} ^site.com$
RewriteRule ^$ https://www.site.com [R=301,L] 

Last edited by Inigoesdr; 10-22-2011 at 11:07 PM..
billigseo is offline   Reply With Quote
Users who have thanked billigseo for this post:
Samhain13 (11-01-2011)
Old 11-01-2011, 08:11 PM   PM User | #3
Samhain13
Regular Coder

 
Samhain13's Avatar
 
Join Date: Aug 2008
Location: Pilipinas
Posts: 165
Thanks: 4
Thanked 18 Times in 18 Posts
Samhain13 is on a distinguished road
^ Not sure if it was what OP was looking for but it helped me with another issue. Thanks.
__________________
I am a Man of Truth. I am a Free Human Person. I am a Peacemaker.
** Independent Multimedia Artist in Pasig **
Samhain13 is offline   Reply With Quote
Reply

Bookmarks

Tags
rewrite engine

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:53 PM.


Advertisement
Log in to turn off these ads.