.htaccess绑定域名到子目录的方法
更新时间:2008年07月01日 21:08:15 作者:
首先用控制面版的域名绑定功能绑定了域名, 然后用.htaccess
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]
# 把 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]
相关文章
Centos 6.5 服务器优化配置备忘(一些基础优化和安全设置)
这篇文章主要介绍了Centos 6.5 服务器优化(一些基础优化和安全设置),需要的朋友可以参考下2016-10-10如何在CentOS8上安装和配置Postfix邮件服务器的方法示例
这篇文章主要介绍了如何在CentOS8上安装和配置Postfix邮件服务器的方法示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-11-11
最新评论