如何使用主域主机从子域访问文件?
假设我在我的子域名上传了一张图片,如下所示
https://subdomain.example.com/pic/image21343.png
如何使用主域名托管服务商访问此图片?
答案 0 :(得分:-1)
我估计您要删除子域名。你可以在你的htaccess
中添加这样的东西RewriteEngine On
RewriteCond %{HTTP_HOST} !^sub\.domain\.com$ [NC]
RewriteRule (.*) http://sub.domain.com$1 [R=301,L]
来自here