php - URL not found error in laravel4 -
I've added it to my routes
Root :: find ('account / create ', Array (' as '=' gtc: 'account-creation', 'usage' = & gt; 'AccountController @ makeGet'));
Then when I go to make public / account /, I did not find this server error while making a requested url / webprobe / public / account /. Then when I did it work on my /webproj/server.php
You have some problems:
1) If you still have your URL If you need to use / public>
, then the correct form is:
http: // server / project / public / index.fp / account / create < / Code>
2) You should not use / public>
, so you must configure your webserver virtual host correctly to / public
Point to your URL so that you
And it should not be used, Laravel needs to run only3) Can not access
/webproj/server.php
ashttp: // server / project / account / create
php artisan serve
Comments
Post a Comment