有人可以帮助我将特定子域重定向到apache2 Linux服务器中的其他URL吗
jum4pzuy1#
创建一个名为.htaccess的文件,并给予其以下内容:
.htaccess
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^test.example.com$ [NC] RewriteRule ^(.*)$ http://example.com/page [L]
根据需要替换域和地址文档:httpd.apache.org/docs/2.4/rewrite/remapping.html
1条答案
按热度按时间jum4pzuy1#
创建一个名为
.htaccess
的文件,并给予其以下内容:根据需要替换域和地址
文档:httpd.apache.org/docs/2.4/rewrite/remapping.html