2

我想在一个子域上显示页面test.mysite.com,我在这个子域上有几个文件夹,所以如果有人去test.mysite.com/siteone它会显示那个文件夹上的站点。

如何配置 .htaccess 文件?我有以下代码,我在一些问题中找到了它,但它不起作用:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?url=$1 [QSA,L]
</IfModule>
4

1 回答 1

2

“.htaccess 文件提供了一种基于每个目录进行配置更改的方法。” http://httpd.apache.org/docs/2.2/howto/htaccess.html

当用户在浏览器中触发请求时,它会一路向下: 1 服务器计算机 2 apache 服务 3 (v) 主机配置(通过 http.conf,预加载到 apache 服务中) 4 目录配置(加载到要求)

所以,不,你不能在 .htaccess 中配置虚拟主机,因为它遥不可及

如果您有权访问 http.conf 或后续包含文件,只需查看 http://httpd.apache.org/docs/current/vhosts/examples.html

于 2013-09-12T13:38:31.843 回答