在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文件配置好后,將文件上傳至網站根目錄即可;