Vimeo 仍然是一个 https 问题。我在 https 服务器上有一个 WordPress 多站点。在大多数文件中,地址是 http 还是 https 都没有关系。但是,Vimeo 有一页。我需要确保仅通过 http 访问特定页面,以便视频正常工作。问题的原因是来自 https 页面的链接会自动获取 https。以下内容不会破坏页面,但会保留 https。
# 9/23/13 Vimeo address should not be reached through https
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} /wordpress-page-with-vimeo
RewriteRule ^(.*)$ http://wordpress-site.com/$1 [R,L]
谢谢你的帮助!