I have this re-write rule on apache and working perfectly redirect to the site I want on ie but not on firefox or chrome. and I am wondering why acting differently on theses browsers??!!
this is my apache rewrite config
RewriteEngine On
RewriteLog "/opt/apache/logs/rewrite.log"
RewriteLogLevel 1
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://server/index.php [L,R]
so the apache rule properly redirect to "https://server/index.php but on Firefox/chrome stop at "https://server". is there any mistake on my apache re-write configration?
thanks.