共计 426 个字符,预计需要花费 2 分钟才能阅读完成。
在 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 文件配置好后,将文件上传至网站根目录即可;
丸趣 TV 网 – 提供最优质的资源集合!
正文完