htaccess绑定域名 .htaccess绑定域名到子目录的方法
人气:0想了解.htaccess绑定域名到子目录的方法的相关内容吗,在本文为您仔细讲解htaccess绑定域名的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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]
加载全部内容