Yii2:-Pretty URL's are formed, but not working (says 404 “NOT FOUND”)

前端 未结 3 937
夕颜
夕颜 2020-12-28 21:42

I have started learning yii2 and I tried to do pretty URL stuff, but failed. What I did:-

in config/web.php (I have edited below):

\         


        
3条回答
  •  执笔经年
    2020-12-28 22:35

    If non of above answers worked and you are using Apache as your web server on linux,then make sure that rewrite mode is enabled in Apache and if it's not you can enable it with this command:

    sudo a2enmod rewrite 
    

    and after that restart Apache web server

    sudo systemctl restart apache2
    

    and it should solve the problem.

提交回复
热议问题