巧用伪静态让虚拟主机支持域名绑定到子目录网
导读:网站运营网站运营一般虚拟主机是不支持绑定到子目录的,这时候该怎么办呢,其实还可以利用伪静态实现将域名或二级域名绑定到子目录。 如果是Apache环境,在站点根目录新建一个文件命个业网站建设公司网站优化seo培训。
一般虚拟主机是不支持绑定到子目录的,这时候该怎么办呢,其实还可以利用伪静态实现将域名或二级域名绑定到子目录。 如果是Apache环境,在站点根目录新建一个文件命名为:.htaccess,如果已有直接修改增加 下面是123.seouc.com域名绑定到子目录dh RewriteEngine OnRewriteBase / # 绑定123.seouc.com到子目录dhRewriteCond %{HTTP_HOST} ^123\.pbhtml\.com$ [NC]RewriteCond %{REQU […]
一般虚拟主机是不支持绑定到子目录的,这时候该怎么办呢,其实还可以利用伪静态实现将域名或二级域名绑定到子目录。
如果是Apache环境,在站点根目录新建一个文件命名为:.htaccessseo网站优化培训,如果已有直接修改增加
下面是123.seouc.com域名绑定到子目录dh
RewriteEngine On RewriteBase / # 绑定123.seouc.com到子目录dh RewriteCond %{HTTP_HOST} ^123\.pbhtml\.com$ [NC] RewriteCond %{REQUEST_URI} !^/dh/ RewriteRule ^(.*)$ dh/$1?Rewrite [L,QSA]如果是windows服务器,在站点根目录新建web.config文件,参考以下
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1" stopProcessing="true"> 网站建设教程 <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negat网站建设制作e="true" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="index.php?s={R:1}" appendQueryString="true" /> </rule> <rule name="Imported Rule 2" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="^123\.pbhtml\.com$" /> <add input="{URL}" pattern="^/dh/" ignoreCase="false" negate="true" /> </conditions> <action type="Rewrite" url="dh/{R:1}?Rewrite" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>声明: 本文由我的SEOUC技术文章主页发布于:2023-05-25 ,文章巧用伪静态让虚拟主机支持域名绑定到子目录网主要讲述子目录,绑定,域名网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_7811.html