Welcome Guest, Not a member yet? Register   Sign In
SSL in .htaccess = ERROR 404
#1

I use .htaccess to HTTPS, but i recive error 404. Why?
Here is my code:
Code:
<IfModule mod_rewrite.c>
  RewriteEngine On
  # !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading
  #  slashes.
  # If your page resides at
  #  http://www.example.com/mypage/test1
  # then use
  # RewriteBase /mypage/test1/
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?/$1 [L]

  # ENFORCE SSL
  RewriteCond %{HTTPS} !=on
  RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>

<IfModule !mod_rewrite.c>

  ErrorDocument 404 /index.php
</IfModule>
Reply
#2

forcing ssl should occur before the other rewrite rules.
Reply
#3

I do it like this:


Code:
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://mysite.com/$1 [R,L]
Reply




Theme © iAndrew 2016 - Forum software by © MyBB