国产欧美日韩第一页|日本一二三不卡视频|在线精品小视频,亚洲第一免费播放区,metcn人体亚洲一区,亚洲精品午夜视频

關(guān)于TP3.2 nginx下配置子域名

2017-01-17 00:44:12 10416

關(guān)于TP3.2 nginx下配置子域名


1、nginx.conf

server {

listen 80;

server_name admin.xxx.com;

set $rootpath /data/wwwroot/;

client_max_body_size 128M;

access_log /var/log/nginx/log/www.tjdsmy.cn;

location / {

root $rootpath;

#下面這段偽靜態(tài)支持

if (!-e $request_filename){

#rewrite ^/(.*) /index.php last;

rewrite ^(.*)$ /index.php?s=$1 last;

break;

}

#上面這段偽靜態(tài)支持

index index.php index.html index.htm;

}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root /usr/share/nginx/html;

}

location ~ .php$ {

root $rootpath;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param _FILENAME $rootpath$fastcgi__name;

include fastcgi_params;

}

location ~ /.ht {

deny all;

}

}



2、TP框架入口

.htaccess文件 //默認自帶的即可

<IfModule mod_rewrite.c>

Options +FollowSymlinks

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

</IfModule>




3、TP框架App/commcon/conf文件

'APP_SUB_DOMAIN_DEPLOY' => 0, // 開啟子域名或者IP配置

'APP_SUB_DOMAIN_RULES' => array(

'admin' => 'Admin', // 后臺訪問網(wǎng)站

),


提交成功!非常感謝您的反饋,我們會繼續(xù)努力做到更好!

這條文檔是否有幫助解決問題?

非常抱歉未能幫助到您。為了給您提供更好的服務(wù),我們很需要您進一步的反饋信息:

在文檔使用中是否遇到以下問題: