我在.htaccess文件中使用此代码处于维护模式的Wordpress网站:
<Limit GET POST PUT>
order deny,allow
deny from all
allow from xx.xxx.xxx.xxx
</LIMIT>
ErrorDocument 403 /custom-message.html
<Files custom-message.html>
order allow,deny
allow from all
</Files>
当我继续 mywebsite.com 时,一切都适合我,非常酷。 但我想使用别名重定向技术来提高我的图像的速度和加载速度。我的网站的视频(例如 static.mywebsite.com 重定向到我的 / www 文件夹)。
问题是当我从 static.mywebsite.com上的同一IP地址时,我在我的维护页面上重定向...
你知道如何让我私下访问我创建的别名子域名,这样即使我处于维护模式,我也能看到静态图像吗?
非常感谢!