After the migration of a high traffic site, from Redhat to Suse, Internet Explorer users (of at least IE 9) have, in some cases, troubles to view the frontpage (error message: "Internet explorer cannot display the page" which points to a 500 server error). In most cases Internet Explorer does display the page correctly, as do all other browsers. I have checked this on around 10 different computers, with different IE versions and different OS's. Browserstack also displays the site correctly for all versions of IE. So far, I have not been able to reproduce the error myself. On the old server this problem didnt exist.
According to the apache access.log, the error is probably related to a redirect which has been specified in the .htaccess file. The access log gives status 302 in case of the error, after that nothing (for the specific ip address). The error log is empty. See complete .htaccess file below.
SSL has been installed for this site and functions well, without any known errors. Strange detail: if a user who receives the error presses F5, the site then loads without problems, even after rebooting or restarting the browser. This points to a caching problem but so far I have not been able to find the reason.
SetEnv APPLICATION_ENV production
Options All -Indexes
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$ [OR]
RewriteCond %{HTTP_HOST} !www\.domain\.nl [NC]
RewriteRule ^(.*)$ https://www.domain.nl/$1 [R,L]
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
<Files .htaccess>
order allow,deny
deny from all
</Files>
Some other details:
Apache/2.2.12 (Linux/SUSE) PHP Version 5.3.17 Zend Engine v2.3.0 mod_ssl/2.2.12
Who can help please? Apologies that the problem is not very well defined, but am afraid thats related to the problem itself.
Thanks in advance