TP5後臺管理,thinkphp5後臺

duzhenxun發表於2019-05-11

thinkphp5框架+Bootstrap開發,後臺已做好選單與許可權管理

thinkphp5框架+Bootstrap開發,後臺已做好選單與許可權管理,支援一個管理員多個組。這是我學習tp5用來練手用的。僅供參考使用!

演示:http://admin.0532888.cn

後期最新程式碼更新到github上吧。
https://github.com/duzhenxun/TP5Admin

虛擬機器配置,需要繫結到public目錄中,這樣比較安全.

Nginx虛擬機器配置如下:

server {
listen 80; 
server_name tp5admin.com;
root "/Users/mac/wwwroot/work/tp5admin.com/public";
location / { 
index index.html index.htm index.php;
autoindex on; 
if (!-e $request_filename) {
###一級目錄下
rewrite ^/(.*)$ /index.php/$1 last;
###域名下的二級目錄
#rewrite ^/目錄名/(.*)$ /目錄名/index.php/$1 last;


location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param script_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;

}
window環境 LAMP 配置

1 在 C:\Windows\System32\drivers\etc\hosts檔案底部新增
127.0.0.1 tp5admin.com

2 在httpd.conf 檔案底部新增 tp5admin 網站配置
<virtualhost *:80>
ServerName tp5admin.com
DocumentRoot C:\xampp\htdocs\tp5admin\public
<virtualhost>
3 重啟apache 即可 執行tp5admin.com/admin 即可

訪問:TP5後臺管理,thinkphp5後臺

評論(1)

相關文章