Search code examples
phplaravelpublic-html

404. That’s an error. The requested URL was not found on this server in laravel at 000webhost


I upload all files and folder on 000webhost and change name public to public_html. so user can now access home page but after clicking on home page and redirecting to some other page but it is showing above error. I'm getting stuck now so can you tell me any solution for 000webhost with laravel. I read some documents too but nothing helpful.


Solution

  • I found solution of it myself.

    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*) index.php`
    

    save it as .htcaccess and put it into public_html folder.