links redirect to dashboard xampp
问题 I've moved WordPress from hosts to Xampp local hosts. I corrected the links inside the database. Although the home page is loaded. But on every link, I'm redirected to the http: // localhost / dashboard page. I use WordPress 4.9.6, Xampp 3.2.2 and Windows 8.1 64-bit my .htaccess file 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] <