Hello,
I have build one back end application.which has url like below.
localhost/demosite/backend/web/index.php
i want to remove "web/index.php" from above url and want url like
localhost/demosite/backend
i have done some searching for this issue and found below solutions,i have set below code in my config/main.php file.
‘urlManager’ => [
'enablePrettyUrl' => true,
'showScriptName' => true,
]
but it is not working.
any solutions?