Yii2 的高級應用程式範本在單獨的目錄中建立前端和後端部分。預設情況下,這些目錄出現在 URL 中,這對於乾淨且專業的簡報來說可能是不可取的。本文旨在引導您完全隱藏這些目錄。
1.根.htaccess配置
在專案的根目錄(例如advanced/)中,建立一個.htaccess檔案並貼上以下程式碼:
Options FollowSymlinks RewriteEngine On # Redirect admin requests to backend/web RewriteCond %{REQUEST_URI} ^/(admin) RewriteCond %{REQUEST_URI} !^/backend/web/(assets|css)/ RewriteRule ^.*$ backend/web/index.php [L] # Redirect all other requests to frontend/web RewriteCond %{REQUEST_URI} !^/(frontend|backend)/web/(assets|css)/ RewriteCond %{REQUEST_URI} !index.php RewriteCond %{REQUEST_FILENAME} !-f [OR] RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^.*$ frontend/web/index.php
2.請求元件
在common目錄下建立一個components/Request.php檔案,加入以下程式碼:
namespace common\components;
class Request extends \yii\web\Request {
public $web;
public $adminUrl;
public function getBaseUrl(){
return str_replace($this->web, "", parent::getBaseUrl()) . $this->adminUrl;
}
public function resolvePathInfo(){
if($this->getUrl() === $this->adminUrl){
return "";
}else{
return parent::resolvePathInfo();
}
}
}
3.設定前端和後端應用程式
在frontend/config/main.php和backend/config/main.php中,修改request和urlManager組件如下:
frontend /config/main.php
'request' => [
'class' => 'common\components\Request',
'web' => '/frontend/web'
],
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false
]
backend/config/main.php
'request' => [
'class' => 'common\components\Request',
'web' => '/backend/web',
'adminUrl' => '/admin'
],
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false
]
可選步驟4(如果前面的步驟失敗)
在Web目錄中建立一個.htaccess文件,並加入以下程式碼:
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php?/$1 [L]
Result
應用這些變更後,您可以透過http:// 存取您的網站/localhost/yii2app 和http://localhost/yii2app/admin 沒有任何前端或後端路徑出現在URL 中。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3