dev dev
dev dev

Reputation: 33

How to remove /public/nova/ from url?

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

Answers (1)

Fawzan
Fawzan

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

Related Questions