Apache伺服器的設定
修改httpd.conf設定檔
1、將LoadModule rewrite_module modules/mod_rewrite.so前面的註解#號去掉。
2、加入以下內容:
<Directory "path/to/basic/web"> # use mod_rewrite for pretty URL support RewriteEngine on # If a directory or a file exists, use the request directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Otherwise forward the request to index.php RewriteRule . index.php # ...other settings... </Directory>
注意其中的path/to/basic/web修改成你的根目錄,最後不要忘記重啟apache伺服器。
(推薦教學:yii框架)
Nginx伺服器的設定
修改nginx.conf設定文件,在網域對應的server{}內新增以下內容:
location / { # Redirect everything that isn't a real file to index.php try_files $uri $uri/ /index.php$is_args$args; }
最後不要忘記重載設定檔。
yii2程式碼的設定
修改config/web.php,在components陣列中加入以下內容(去掉前後的註解)
'components' => [ ... 'urlManager' => [ 'enablePrettyUrl' => true, 'showScriptName' => false, 'rules' => [ ], ], ... ],
這時再刷新網頁,就能看到連結的形式發生了改變。此時預設會將/index.php?r=controller/action這樣的形式修改為/controller/action(如果含有參數,則將/index.php?r=controller/action&...改為/controller/action ?...)。
更多程式相關內容,請造訪php中文網程式設計教學欄位!
以上是yii框架怎麼設定偽靜態的詳細內容。更多資訊請關注PHP中文網其他相關文章!