Apache 测试页

问题描述 投票:0回答:1

我对我的网站有疑问。所以在我的子域docs.domain.com上是apache服务器的测试页面 Test Page www.docs.domain.com 我希望当用户输入此 www.docs.domain.com 时重定向它们或打开它们 www.domain.com/documentation。 我用的是linux

没有尝试过,因为它是在生产环境中。

wordpress apache web
1个回答
0
投票
Do you think this will solute my problem ?
/etc/httpd/conf.d/docs.conf
<VirtualHost *:80>
    ServerAdmin [email protected]
    ServerName docs.domain.com
    ServerAlias docs.domain.com
    DocumentRoot /var/www/brand/Documentation/new


    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^docs\.domain\.com$ [NC]
    RewriteRule ^(.*)$ https//domain.com/documentation/$1 [L,R=301]
</VirtualHost>
© www.soinside.com 2019 - 2024. All rights reserved.