Thanks, Sampoyigi!
I have only one question because Tasty igniter is integrated on my website with an iframe.
And on my htacces I got a rule that redirect the home page index.php to a page call home.html.
As you can see here it's an iframe https://www.islandmixup.co.uk/order-now.html
This the main page: https://www.islandmixup.co.uk/index.php
Is this solution going to affect those links?
This is the htacess:
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# Prevent Directoy listing
Options -Indexes
<IfModule mod_rewrite.c>
# Turn on URL rewriting
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage then use
RewriteBase /mypage
RewriteBase /
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
# Begin Muse Generated redirects
# End Muse Generated redirects
# Provide Specific Index Page (Set the default handler)
DirectoryIndex home.html