开启美化:

关闭美化url:

相关代码:
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
'rules' => [],
],
apache相关配置:
已加载LoadModule rewrite_module modules/mod_rewrite.so模块
vhosts相关配置:
<Directory "D:\WWW\demo\backend\web">
Options FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
web目录加个文件.htaccess
代码:Options +FollowSymLinksIndexIgnore */*RewriteEngine on# if a directory or a file exists, use it directlyRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-d# otherwise forward it to index.phpRewriteRule . index.phpRewriteRule \.svn\/ /404.htmlRewriteRule \.git\/ /404.html