我对我的网站有疑问。所以在我的子域docs.domain.com上是apache服务器的测试页面 我希望当用户输入此 www.docs.domain.com 时重定向它们或打开它们 www.domain.com/documentation。 我用的是linux
没有尝试过,因为它是在生产环境中。
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>