在Linux主机中使用htaccess文件绑定二级域名的方法
1.首先,在Linux主机新建一个htaccess文件,并打开;
2.htaccess文件打开后,在文件中添加以下配置即可;
例:绑定的二级域名为text.com.cn
# 开启功能
RewriteEngine on
# 绑定的二级域名
RewriteCond %{HTTP_HOST} ^(text.)?com.cn$
RewriteCond %{REQUEST_URI} !^/text/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /cms/$1
RewriteCond %{HTTP_HOST} ^(text.)?com.cn$
RewriteRule ^(/)?$ text/index.php [L]
3.最后,htaccess文件配置好后,将文件上传至网站根目录即可;
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 一个二级域名绑定多少个小程序