Hi,
Saw post #37748 regarding the icons not displaying correctly and a reply from Elliot instructing the user to add the below code on .htaccess file.
Can someone walk me through on how to correctly edit this? Already downloaded a backup of the htaccess file but I’m not sure where to exactly place this code on the file. I’ve attached htaccess code on Private content for your reference.
Thank you!
Hey!
What is in your file at this point? I would guess something like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
If yes, then you can copy paste everything into your file, though I recommend to make a backup copy in case you should get any undesired results.
Best regards,
Rikard