I have a wordpress website. It has a problem. All links there on the website are redirecting to the home page. I have checked the htaccess too but it seems perfect to me. Here is the htaccess code.
BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule (.+)\.html$ http://immigrationpoint.co.uk/ [L,R]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
END WordPress
The website is http://immigrationpoint.co.uk/
If you try to click any link, all it does is that redirects you to the home page.
Any help would be highly appreciated. Thanks in advance.