Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站托管在共享托管服务器上,其他网站也托管在该服务器上。现在我想子域将我的网站文件夹指向服务器。意味着如果我们访问 URL coolname.domain.com,那么它应该被重定向到 www.domain.com。但它被重定向到 Cpanel 错误页面。
提前致谢。
最好的方法是在您的 DNS 区域中为您的子域设置一个条目。
您还可以在.htaccess文件中使用 URL 重写:
.htaccess
RewriteEngine on RewriteCond %{HTTP_HOST} ^sub.domain.com$ RewriteRule (.*) http://domain2.com/$1