根目录文件修改:

文件名:.htaccess

添加内容:

   
   
   
   
  1.  
  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.  

目录名:shop

添加文件:.htaccess

添加内容:

 

    
    
    
    
  1.  
  2. RewriteEngine on 
  3. RewriteBase /shop/ 
  4.