0
Welcome Guest! Login
0 items Join Now

htaccess redirect to SSL except one url

  • htaccess redirect to SSL except one url

    Posted 9 years 7 months ago
    • He guys, i'm trying to accomplish the following, but can't seem to get it to work correct.
      Maybe someone can help me.

      I'm trying to redirect al my urls form http to https (ssl). Also it needs to go from non www to www.
      In my .htaccess file is this:
      RewriteCond %{HTTP_HOST} !^www\.
      RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
      
      RewriteEngine On
      RewriteCond %{HTTPS} off
      RewriteCond %{REQUEST_URI} !/competitie/competitie-programma-uitslagen-standen [NC]
      RewriteCond %{REQUEST_URI} !/index.php/competitie/competitie-programma-uitslagen-standen [NC]
      RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

      When i go to www.mysite.com/competitie/competitie-pro...ma-uitslagen-standen it redirects to www.mysite.com/index.php
      I have no idea how to fix this... Maybe one of you guys seen this before and know how to fix it.

      Thanks!
  • Re: htaccess redirect to SSL except one url

    Posted 9 years 6 months ago
    • Hi Robin,

      My htaccess is much simpler. This is what I have:
      RewriteEngine On
      RewriteCond %{HTTP_HOST} ^mysite\.com$ [OR]
      RewriteCond %{HTTPS} !on
      RewriteRule ^(.*)$ https://www.mysite.com/$1 [R,L]

Time to create page: 0.044 seconds