{"id":16331641,"url":"https://github.com/soxft/urlshorting","last_synced_at":"2025-07-17T14:33:00.419Z","repository":{"id":43416137,"uuid":"179603764","full_name":"soxft/UrlShorting","owner":"soxft","description":"A simple but powerful URL shortener","archived":true,"fork":false,"pushed_at":"2023-05-29T15:51:20.000Z","size":741,"stargazers_count":257,"open_issues_count":3,"forks_count":89,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-07-11T22:46:29.365Z","etag":null,"topics":["domain","message","php","short","shorting","url","url-shortener","urlshorting"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/soxft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-04-05T01:44:42.000Z","updated_at":"2025-07-05T09:11:10.000Z","dependencies_parsed_at":"2023-01-17T22:15:53.610Z","dependency_job_id":null,"html_url":"https://github.com/soxft/UrlShorting","commit_stats":null,"previous_names":[],"tags_count":41,"template":false,"template_full_name":null,"purl":"pkg:github/soxft/UrlShorting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soxft%2FUrlShorting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soxft%2FUrlShorting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soxft%2FUrlShorting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soxft%2FUrlShorting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soxft","download_url":"https://codeload.github.com/soxft/UrlShorting/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soxft%2FUrlShorting/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265616917,"owners_count":23798924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["domain","message","php","short","shorting","url","url-shortener","urlshorting"],"created_at":"2024-10-10T23:27:54.977Z","updated_at":"2025-07-17T14:32:59.998Z","avatar_url":"https://github.com/soxft.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  \u003ca href=\"http://www.apache.org/licenses/LICENSE-2.0.html\"\u003e \n  \u003cimg src=\"https://img.shields.io/github/license/soxft/URLshorting.svg?style=for-the-badge\" alt=\"License\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/soxft/URLshorting/stargazers\"\u003e \n  \u003cimg src=\"https://img.shields.io/github/stars/soxft/URLshorting.svg?style=for-the-badge\" alt=\"GitHub stars\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/soxft/URLshorting/network/members\"\u003e \n  \u003cimg src=\"https://img.shields.io/github/forks/soxft/URLshorting.svg?style=for-the-badge\" alt=\"GitHub forks\"\u003e\u003c/a\u003e \n  \u003ca href = \"https://github.com/soxft/UrlShorting/releases\"\u003e\n  \u003cimg alt=\"GitHub last commit\" src=\"https://img.shields.io/github/last-commit/soxft/urlshorting?style=for-the-badge\"\u003e\u003c/a\u003e\n\u003c/h1\u003e\n\n\n# 需要注意\n该项目暂时不再维护,我们将完全重构该项目,为了保证历史commit 以及 保证新项目的commit清晰, 我们准备在 https://github.com/soxft/UrlShorter 完成新的项目\n\u003cbr\u003e 如果您有任何新的建议, 可以在 /soxft/UrlShorter 提出issue 感谢支持\n\n\n## 国内镜像地址\n[Gitee](https://gitee.com/dtnetwork/UrlShorting)\n\n## Github发布地址\n[soxft](https://github.com/soxft/UrlShorting)\n[essesoul](https://github.com/essesoul/UrlShorting)\n\n## 简介\n\n一个url网址缩短平台.\n\ndemo：[K6o短链接](https://www.k6o.top/)\n\n## 安装方法\n1.下载源码.\u003cbr/\u003e\n2.上传至你的网站根目录.\u003cbr/\u003e\n3.访问网站域名填写mysql等信息进行安装\u003cbr/\u003e\n4.修改网站伪静态配置:\u003cbr/\u003e\n\nNginx:  \n```\n    if (!-e $request_filename) {\n    rewrite ^/(.*)$ /index.php?id=$1 last;\n    }\n```\n\nApache:\n```\n    \u003cIfModule mod_rewrite.c\u003e\n    RewriteEngine On\n    RewriteCond %{REQUEST_FILENAME} !-f\n    RewriteCond %{REQUEST_FILENAME} !-d\n    RewriteRule ^(.*)$ /index.php?id=$1 [L]\n    \u003c/IfModule\u003e\n```\n\nIIS (仅供参考,未进行测试):\n```\n  \u003crule name=\"tool.apizl.com rewriteTools1\" patternSyntax=\"ECMAScript\" stopProcessing=\"true\"\u003e\n    \u003cmatch url=\"^/(.*)\" ignoreCase=\"false\" /\u003e\n    \u003cconditions logicalGrouping=\"MatchAll\" trackAllCaptures=\"false\" /\u003e\n    \u003caction type=\"Rewrite\" url=\"/index.php?id={R:1}\" appendQueryString=\"false\" /\u003e\n  \u003c/rule\u003e\n```\n\n\n\u003cbr/\u003e5.访问网站进行确认.\n\n## 版权\nxcsoft版权所有 该源码依据apache2开源协议开源,请不要修改版权信息！\n  \u003cp\u003eSecondary Developed By k6o.top\u003c/p\u003e\n  \u003cp\u003eContact us: Gary@dtnetwork.top\u003c/p\u003e\n\n## 更新\nv2.2.3更新\n\u003cbr/\u003e此次更新由k6o短链接提供\n  \u003cp\u003eemail: Gary@dtnetwork.top\u003c/p\u003e\n  \u003cP\u003e1.更新了版本号获取方式，直接拉取GitHub的releases\u003c/p\u003e\n  \u003cp\u003e2.修改了footer.php中的显示bug\u003c/p\u003e\n  \u003cp\u003e3.版本号不再写入数据库和config.php，直接写在php变量中\u003c/p\u003e\n  \u003cp\u003e4.更新footer和友链\u003c/p\u003e\n  \u003cp\u003e5.优化了一下代码的缩进\u003c/p\u003e\n  \u003cp\u003ePS:下次更新计划加上登陆页面验证码和统计代码\u003c/p\u003e\n\n## 其他提示\n  由于某些原因，该源码仍然使用Mysqli连接数据库，可能缺乏一定的安全性，使用时请注意使用WAF等平台进行保护。\n  该项目目前由essesoul进行维护\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoxft%2Furlshorting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoxft%2Furlshorting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoxft%2Furlshorting/lists"}