I was really struggling to find the answer. When I moved my WordPress site from localhost to remote server my links are not working. It showing that:
The requested URL /project/investment was not found on this server.
I don't know what is the problem. I searched a lot, but I cant find the correct solution. I have created the menubar using the html rather than the WordPress nav menu.
Here is my .htaccess
code
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /newsite.in/project/
RewriteRule^index\.php$-[L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ./newsitein/project/index.php [L]
</IfModule>
I don't know how to change it. Can anyone please help me?