您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關yii框架設置偽靜態的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
服務器的配置">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?...)。
關于“yii框架設置偽靜態的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。