简体   繁体   中英

All Urls redirect to home page in wordpress website

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.

Have you tried:

  • deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).

  • switching to the Twenty Eleven theme to rule out any theme-specific problems.

  • resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM