skip to Main Content

404 Not Found” on all pages except start page.

First page only working. Remaining pages all 404 error

If I run below structure url is working.
https://abcd.xyz

If I run below structure url is not working
https://abcd.xyz/login

2

Answers


  1. Try useHash property in RouterModule

    Login or Signup to reply.
  2. It’s a bit late but if you’re hosting your website on Linux you need to create a ".htaccess" file and paste inside it the following:

          <IfModule mod_rewrite.c>  
               RewriteEngine On             
               RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
               RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d    
               RewriteRule ^.*$ - [NC,L]
               RewriteRule ^(.*) index.html [NC,L]
           </IfModule>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search