Reputation: 33
I have installed laravel and nova. For now url is www.example.com/public/nova/login
. I need to remove /public/nova/
.
How can I do that?
Upvotes: 1
Views: 964
Reputation: 4849
By default you can access the nova installation from
http://base_url/nova
If you want to change it, you can change the path from app/config/nova.php
and update the path. eg.
'path' => '/admin',
Upvotes: 2