Website not displaying well on IE
-
Hi. I’ve just recently installed WordPress on my site https://www.mcalcio.com.
I was playing around with the .htaccess file in order to write a 301 redirect (to redirect all traffic from mcalcio .com to www. mcalcio. com), and afer that worked (I tested it, the site was displaying fine and the redirect was working) I uploaded a favicon.ico file to the the root folder, to have the icon display in the favorites whenever someone bookmarked the site.
After uploading the favicon file, the website stopped displaying correctly in IE. It displays correctly with Firefox, but none of the links work: you cannot access comments, click on direct links to posts, nothing…
Can anyone help? I tried removing the favicon.ico file, didn’t change anything.
I’m wondering if the problem lies in my .htaccess file, the index.php, or somewhere entirely different.
For reference, this is the code I have in my .htaccess and index.php files:
.htaccess
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Options +FollowSymLinks RewriteEngine On RewriteCond %{HTTP_HOST} ^mcalcio\.com$ [NC] RewriteRule ^(.*)$ https://www.mcalcio.com/$1 [R=301,L]
index.php
<?php /* Short and sweet */ define('WP_USE_THEMES', true); require('./wordpress/wp-blog-header.php'); ?>
- The topic ‘Website not displaying well on IE’ is closed to new replies.