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.
我刚刚将 UserFrosting 安装到 Cloud 9 (c9.io) 上的项目中。除了页面显示没有 CSS 之外,一切都进行得很顺利。页面显示为纯文本。
我已经注册了主帐户(该注册页面具有 CSS 样式)。
有想法该怎么解决这个吗?
原来我需要取消注释.htaccessUserFrosting 附带的以下行:
.htaccess
RewriteCond %{HTTPS} !=on RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
这会将 HTTP 转发到 HTTPS。