Example url before changed
http://localhost/webappname/index.php?r=site/index
Having changed
http://localhost/webappname/index.php/site/index
- Open the protected/main.config.php
- Find the following code
/* 'urlManager'=>array( 'urlFormat'=>'path', 'rules'=>array( '/'=>'/view', '//'=>'/', '/'=>'/', ), ), */
In the code above we can see there is still a tag comment / * and * / - Remove the tag comment / * and * /
'urlManager'=>array( 'urlFormat'=>'path', 'rules'=>array( '/'=>'/view', '//'=>'/', '/'=>'/', ), ),
- Completed, please reload the page and see your web application url link.