0

For using ActiveController url has view, http://localhost/index.php/controller_name

How to make url without index.php - http://localhost/controller_name?

user199588
  • 539
  • 2
  • 6
  • 21
  • 5
    Possible duplicate of [Enable clean URL in Yii2](http://stackoverflow.com/questions/26525320/enable-clean-url-in-yii2) – ttdijkstra Mar 29 '16 at 18:51

1 Answers1

0

In config/main.php

        'urlManager'       => [
            'showScriptName'               => false,
            'enablePrettyUrl' => true,
...
]
Ivan Buttinoni
  • 4,110
  • 1
  • 24
  • 44