We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
会造成全站不安全提示 请大佬及时修正 文件位置:src/Config.php 行:68 源代码self::$staticHost = is_ssl() ? "https://{$options['static_url']}" : "http://{$options['static_url']}"; 修改self::$staticHost = is_ssl() ? "http://{$options['static_url']}" : "https://{$options['static_url']}"; 仅限主站没有ssl
self::$staticHost = is_ssl() ? "https://{$options['static_url']}" : "http://{$options['static_url']}";
self::$staticHost = is_ssl() ? "http://{$options['static_url']}" : "https://{$options['static_url']}";
The text was updated successfully, but these errors were encountered:
No branches or pull requests
会造成全站不安全提示
请大佬及时修正
文件位置:src/Config.php
行:68
源代码
self::$staticHost = is_ssl() ? "https://{$options['static_url']}" : "http://{$options['static_url']}";
修改
self::$staticHost = is_ssl() ? "http://{$options['static_url']}" : "https://{$options['static_url']}";
仅限主站没有ssl
The text was updated successfully, but these errors were encountered: