关于TP3.2 nginx下配置子域名

2017-01-17 00:44:12 5607

关于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.landui.com;

location / {

root $rootpath;

#下面这段伪静态支持

if (!-e $request_filename){

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

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

break;

}

#上面这段伪静态支持

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', // 后台访问网站

),


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: