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.
Asked
Active
Viewed 3,255 times
-1
-
Can you share the directory structure of your files? – Antonios Tsimourtos May 09 '17 at 08:34
-
Using laravel so as same as laravel consist. I just put all files and folder on 000webhost and one thing i made change is replace public name to publich_html as folder name – Giridhari Lal May 09 '17 at 08:45
-
`http://kisanotpdemo.000webhostapp.com/` it's not working. @AntonisTsimourtos – Giridhari Lal May 09 '17 at 08:48
1 Answers
0
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.

milo526
- 5,012
- 5
- 41
- 60

Giridhari Lal
- 163
- 2
- 11