Jump to content

https rewrite


radox

Recommended Posts

Hello!

 

I have a rewrite rule that's working great, I just need to direct it to SSL and tried a bunch of combinations with no luck

 

Here's what I have so far for the .htaccess file sitting in the /profile/ folder:

RewriteEngine on
RewriteCond %{REQUEST_URI} !profile\.php
RewriteCond %{REQUEST_URI} /([^/]+)/([^/]+)/([^/]+)
RewriteRule !\.(gif|jpg|png|css)$ profile.php?shopid=%2&shop=%3

 

http://www.domain.com/profile/123/shop-name

 

should redirect to

 

https://www.domain.com/profile/123/shop-name

 

I'm sure this is a quick one for someone..thanks!

 

 

Link to comment
Share on other sites

Huh. Right. It would. Derp.

 

Two rules.

RewriteEngine on

# generic HTTPSify rules, but only gets applied to the profile stuff
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !profile\.php
RewriteCond %{REQUEST_URI} /([^/]+)/([^/]+)/([^/]+)
RewriteRule !\.(gif|jpg|png|css)$ https://%{HTTP_HOST}%{REQUEST_URI} [L]

# URL rewriting
RewriteCond %{REQUEST_URI} !profile\.php
RewriteCond %{REQUEST_URI} /([^/]+)/([^/]+)/([^/]+)
RewriteRule !\.(gif|jpg|png|css)$ profile.php?shopid=%2&shop=%3

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.