定制 julabo/yourls_require_protocol 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

julabo/yourls_require_protocol

最新稳定版本:1.0.1

Composer 安装命令:

composer require julabo/yourls_require_protocol

包简介

Advanced protocol validation for original URLs in YOURLS.

README 文档

README

Require Protocol is a YOURLS plugin that ensures original URLs have a valid protocol — and can optionally enforce HTTPS.

Features

  • Enforces presence of a protocol (http:// or https://)
  • Optional: Automatically add http:// when no protocol is present
  • Optional: Automatically add https:// when no protocol is present
  • Optional: Allow only HTTPS
  • Optional: Automatically upgrade http://https://
  • Consistent error messages in the YOURLS admin
  • Fully compatible with YOURLS 1.9+

Installation

  1. Download or clone the repository
  2. Copy the folder to user/plugins/yourls-require-protocol/
  3. In YOURLS Admin: Activate the plugin

Configuration

All settings can be found at the top of plugin.php.

Allow only HTTPS

define('REQP_REQUIRE_HTTPS', true);

Automatically upgrade http:// to https://

define('REQP_UPGRADE_TO_HTTPS', true);

When no protocol is present: automatically add http://

define('REQP_AUTO_ADD_HTTP', true);

When no protocol is present: automatically add https://

define('REQP_AUTO_ADD_HTTPS', true);

Note: If both REQP_AUTO_ADD_HTTPS and REQP_AUTO_ADD_HTTP are set to true, https:// takes precedence.

Examples

Input Setting Result
example.com REQP_AUTO_ADD_HTTPS = true https://example.com
example.com REQP_AUTO_ADD_HTTP = true http://example.com
example.com REQP_AUTO_ADD_HTTPS = true, REQP_AUTO_ADD_HTTP = true https://example.com
http://example.com REQP_UPGRADE_TO_HTTPS = true https://example.com
http://example.com REQP_REQUIRE_HTTPS = true Error
example.com no auto-fix option Error

License

This project is licensed under the MIT License - see the LICENSE file for full license text.

Support

For issues, feature requests, or contributions, please visit the GitHub repository.

统计信息

  • 总下载量: 5
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-11