前端vue與後端Thinkphp在伺服器的部署
阿新 • • 發佈:2019-02-01
vue在服務端部署時,我們都知道通過npm run build 指令打包好的dist檔案,通過http指定是可以直接瀏覽的,Thinkphp通過域名指向index.php檔案才可以瀏覽。要使前端正常呼叫後端資料,有兩種方法:1、前端跨域呼叫後端資料,2、前端打包檔案部署在後端的伺服器資料夾下(同域)。
web伺服器: apache
一、跨域
在伺服器配置站點:
在路徑/home/www/ 下建立test專案資料夾,用來放專案檔案。 找到httpd-vhosts.conf檔案配置站點 前端站點: <VirtualHost *:80> ServerName test.test.com DocumentRoot "/home/www/test/dist" DirectoryIndex index.html </VirtualHost> 後端站點: <VirtualHost *:80> ServerName test.testphp.com DocumentRoot "/home/www/test/php" DirectoryIndex index.php </VirtualHost>
將前端打包好的dist檔案放在/home/www/test/ 資料夾下,執行http://test.test.com可瀏覽,當路徑改變時,重新整理會出現404錯誤。此時dist檔案下建立一個.htaccess檔案,當路徑不存在時,路徑指向http://test.test.com/index.html能解決此問題。
在/home/www/test資料夾下建立專案根目錄php資料夾,將thinkphp檔案放在php下。TP5的入口檔案在public檔案下,在這將public下的入口檔案index.php挪到php資料夾下(個人習慣將入口檔案放在專案根目錄), 後端繫結Index模組。<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] </IfModule>
前端呼叫後端介面,存在跨域,跨域解決方法有好幾種,在這我將在後端php做配置,解決跨域問題,在公用控制器設定跨域配置:
前端呼叫登入介面: this.axios.post('http://test.testphp.com/index.php/base/login', {user: '', password: ''})。class Common extends Controller { public $param; // 設定跨域訪問 public function _initialize() { parent::_initialize(); isset($_SERVER['HTTP_ORIGIN']) ? header('Access-Control-Allow-Origin: '.$_SERVER['HTTP_ORIGIN']) : ''; header('Access-Control-Allow-Credentials: true'); header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS'); header("Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, authKey, sessionId"); $param = Request::instance()->param(); $this->param = $param; } }
(可在webpack.base.conf.js檔案下可定義介面:http://test.testphp.com/index.php/)
二、同域
後端配置同上,公共配置器中的header配置註釋。將前端的dist檔案下的所有檔案(包含.htaccess),放在php資料夾下。將後端index控制器的index方法的路徑重定向php下的index.html檔案:
namespace app\index\controller;
use think\Controller;
class Index extends Controller
{
public function index() {
$this->redirect('/index.html');
}
}
前端呼叫登入介面: this.axios.post('/index.php/base/login', {user: '', password: ''})