服务器 
首页 > 服务器 > 浏览文章

.htaccess绑定域名到子目录的方法

(编辑:jimmy 日期: 2024/11/17 浏览:3 次 )
RewriteEngine on    
# 把 yourdomain.com 改为你要绑定的域名.    
RewriteCond %{HTTP_HOST} ^(www.)?prcer.com$    

   
# 把 subfolder 改为要绑定的目录.    
RewriteCond %{REQUEST_URI} !^/subfolder/    

# 不要改以下两行.    
RewriteCond %{REQUEST_FILENAME} !-f    
RewriteCond %{REQUEST_FILENAME} !-d    

   
# 把 subfolder 改为要绑定的目录.    
RewriteRule ^(.*)$ /subfolder/$1    

# 把 yourdomain.com 改为你要绑定的域名    
# 把 subfolder 改为要绑定的目录.    
# subfolder/ 后面是首页文件index.php, index.html......    

RewriteCond %{HTTP_HOST} ^(www.)?prcer.com$    
RewriteRule ^(/)?$ subfolder/index.php [L]  
上一篇:urlscan.ini中文详解注释
下一篇:linux下用cron定时执行任务的方法
一句话新闻
Windows上运行安卓你用过了吗
在去年的5月23日,借助Intel Bridge Technology以及Intel Celadon两项技术的驱动,Intel为PC用户带来了Android On Windows(AOW)平台,并携手国内软件公司腾讯共同推出了腾讯应用宝电脑版,将Windows与安卓两大生态进行了融合,PC的使用体验随即被带入到了一个全新的阶段。