温馨提醒
如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢
本文最后更新于2023年10月27日,已超过 180天没有更新
安装方法:
1.下载源码。
2.上传至你的网站根目录。
3.访问网站域名填写mysql等信息进行安装。
4.修改网站伪静态配置:
Nginx:
if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?id=$1 last; }
Apache:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php?id=$1 [L] </IfModule>
IIS:
<rule name="tool.apizl.com rewriteTools1" patternSyntax="ECMAScript" stopProcessing="true"> <match url="^/(.*)" ignoreCase="false" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false" /> <action type="Rewrite" url="/index.php?id={R:1}" appendQueryString="false" /> </rule>
其他提示:
由于某些原因,该源码仍然使用Mysqli连接数据库,可能缺乏一定的安全性,使用时请注意使用WAF等平台进行保护。 该项目目前由k6o.top进行维护
源码下载:https://github.com/soxft/URLshorting
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论0+