1. 程式人生 > >Yii2 url地址美化與重寫

Yii2 url地址美化與重寫

manager tee req url地址 lena span nts use quest

技術分享圖片

main.php中’components‘=>[] 中添加如下代碼:

‘urlManager‘ => [
            ‘enablePrettyUrl‘ => true,
            ‘showScriptName‘ => false,//隱藏index.php
//            ‘enableStrictParsing‘ => false,
            ‘suffix‘ => ‘.html‘,//後綴,如果設置了此項,那麽瀏覽器地址欄就必須帶上.html後綴,否則會報404錯誤
            ‘rules‘ => [
            ]
, ],

添加.htaccess文件:

Options +FollowSymLinks
    IndexIgnore */*
    RewriteEngine on
 
    # if a directory or a file exists, use it directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
 
    # otherwise forward it to index.php
    RewriteRule . index.php

Yii2 url地址美化與重寫