lamp 环境配置二级域名 [ 2.0 版本 ]
让 admin.XXX.com
指向网站的后台目录 /backend/web
让 www.XXX.com
指向网站的前台目录 /frontend/web
网上找教程看了好多 大致我是操作不会的 自己还是以之前本地虚拟指向的方式来实现
首先你要在自己的域名空间下 配置好二级目录
假设你已经配置好了
在lamp环境下 /etc/httpd/conf
目录下的
httpd.conf文件
再最后面添加
NameVirtualHost *:80
<VirtualHost *:80>
#ServerAdmin tech@sanlischool.com
DocumentRoot /var/www/html/ceshi/frontend/web
ServerName www.duanhaochen.com
ErrorLog logs/mall.sanlischool.com-error_log
CustomLog logs/mall.sanlischool.com-access_log common
<Directory />
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order deny,allow
Allow from all
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php/$1 [L]
</Directory>
</VirtualHost>
<VirtualHost *:80>
#ServerAdmin tech@sanlischool.com
DocumentRoot /var/www/html/ceshi/backend/web
ServerName admin.duanhaochen.com
ErrorLog logs/mall.sanlischool.com-error_log
CustomLog logs/mall.sanlischool.com-access_log common
<Directory />
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order deny,allow
Allow from all
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php/$1 [L]
</Directory>
</VirtualHost>
然后重启 apache就可以了
jayrui612
注册时间:2017-03-24
最后登录:2019-05-27
在线时长:42小时30分
最后登录:2019-05-27
在线时长:42小时30分
- 粉丝12
- 金钱3845
- 威望170
- 积分5965
共 1 条评论
把他们当做两个独立的网站来配置