I have the following problem: My .htaccess defines my URL rewrite that works perfectly when accessed by http but when accessed by https it informs that the page was not found. Below is my .htaccess.
AddDefaultCharset UTF-8
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/\.]+)/?$ index.php?area=$1 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ index.php?area=$1&sub=$2 [L]
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?area=$1&sub=$2&subitem=$3 [L]
Has anyone ever gone through the same thing? Do you have any idea what that might be?