大多虚拟主机都是不能修改网站根目录的。可以通过.htaccess来实现。
Apache主机一般支持.htaccess伪静态,即可以实现绑定域名到子目录、一个空间多个站点。
应用举例:绑定www.xxx.com到htaccess目录
根目录下.htaccess内容
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # 绑定www.xxx.com到子目录htaccess RewriteCond %{HTTP_HOST} ^www\.xxx\.com$ [NC] RewriteCond %{REQUEST_URI} !^/htaccess/ RewriteRule ^(.*)$ htaccess/$1?Rewrite [L,QSA] #可以绑定多个,只需重复上三行代码并更改一下域名、目录名就行了 </IfModule>
htaccess目录下的.htaccess内容
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / #只许绑定的域名访问,其他域名301跳转 RewriteCond %{HTTP_HOST} !^www\.xxx\.com$ [NC] RewriteRule (.*) http://www.xxx.com/$1 [L,R=301] #对绑定目录下htaccess目录的处理 RewriteCond %{REQUEST_URI} ^\/htaccess\/ [NC] RewriteCond %{QUERY_STRING} !^(.*)?Rewrite # RewriteRule ^(.*)$ /%{REQUEST_URI}/%{REQUEST_URI}/$1?Rewrite [L,QSA] </IfModule>
如果对绑定子目录的要求不高的话,子目录下就不需要建立.htaccess文件了。
原文地址:https://www.cnblogs.com/zhja/p/9186665.html
时间: 2024-10-10 15:57:57