虚拟主机-多域名多目录使用方法

根目录文件修改:

文件名:.htaccess

添加内容:

  
  
  
  
  1. <IfModule mod_rewrite.c> 
  2. # 关闭目录列表 
  3. Options -Indexes 
  4. RewriteEngine on 
  5. # 预设页面 
  6. DirectoryIndex default.html index.html default.html index.htm default.php index.php 
  7. # vlina.com跳转到www.vlina.com 
  8. RewriteCond %{HTTP_HOST} ^vlina.com [NC] 
  9. RewriteRule ^(.*)$ http://www.vlina.com/$1 [L,R=301] 
  10.  
  11.  
  12. # 绑定域名www.vlina.com绑定到shop目录下
  13. RewriteCond %{HTTP_HOST} ^(www.)?vlina\.com$ [NC] 
  14. RewriteRule ^(.*)$ /shop/$1 [L] 
  15. </IfModule> 

目录名:shop

添加文件:.htaccess

添加内容:

 

   
   
   
   
  1. <IfModule mod_rewrite.c> 
  2. RewriteEngine on 
  3. RewriteBase /shop/ 
  4. </IfModule> 

 

 

本文出自 “资料空白” 博客,谢绝转载!

你可能感兴趣的:(代码,多目录,多域名)