All Projects → soxft → Urlshorting

soxft / Urlshorting

Licence: apache-2.0
A simple but powerful URL shortener

Projects that are alternatives of or similar to Urlshorting

Breviare
Small URL shortener made with the MERN Stack
Stars: ✭ 16 (-89.33%)
Mutual labels:  url, url-shortener
trym
🔗 A modern URL shortener
Stars: ✭ 29 (-80.67%)
Mutual labels:  url, url-shortener
mnmlurl-extension
[DEPRECATED] 💁 Browser extension for Minimal URL - Modern URL shortener with support for custom alias & can be hosted even in GitHub pages
Stars: ✭ 21 (-86%)
Mutual labels:  url, url-shortener
Laravel Short Url
A Laravel package to shorten urls
Stars: ✭ 127 (-15.33%)
Mutual labels:  url-shortener, url
Longurl
ℹ️ Small R package for no-API-required URL expansion
Stars: ✭ 30 (-80%)
Mutual labels:  url-shortener, url
Urlhub
URL shortener web application based on the Laravel PHP Framework.
Stars: ✭ 217 (+44.67%)
Mutual labels:  url-shortener, url
http
Aplus Framework HTTP Library
Stars: ✭ 113 (-24.67%)
Mutual labels:  url, message
Tldts
JavaScript Library to work against complex domain names, subdomains and URIs.
Stars: ✭ 151 (+0.67%)
Mutual labels:  url, domain
Mnmlurl
🔗 Minimal URL - Modern URL shortener with support for custom alias & can be hosted even in GitHub pages [DEPRECATED]
Stars: ✭ 311 (+107.33%)
Mutual labels:  url-shortener, url
Parse Domain
Splits a hostname into subdomains, domain and (effective) top-level domains.
Stars: ✭ 261 (+74%)
Mutual labels:  url, domain
node-url-shortener
URL Shortener in Base58 using Node.js, Express, Sequelize, Mocha and Bootstrap
Stars: ✭ 21 (-86%)
Mutual labels:  url, url-shortener
Prestashop Clean Urls
Prestashop module. This override module allows to remove IDs from URLs
Stars: ✭ 87 (-42%)
Mutual labels:  url-shortener, url
tall
Promise-based, No-dependency URL unshortner (expander) module for Node.js
Stars: ✭ 56 (-62.67%)
Mutual labels:  url, url-shortener
Url Shortener
Web application that will help you in shortening your url
Stars: ✭ 65 (-56.67%)
Mutual labels:  url-shortener, url
Pyfunceble
The tool to check the availability or syntax of domain, IP or URL.
Stars: ✭ 143 (-4.67%)
Mutual labels:  url, domain
Api Query Params
Convert URL query parameters to MongoDB queries
Stars: ✭ 141 (-6%)
Mutual labels:  url
Nativescript Feedback
📢 Non-blocking textual feedback for your NativeScript app
Stars: ✭ 127 (-15.33%)
Mutual labels:  message
Bull
Premium Queue package for handling distributed jobs and messages in NodeJS.
Stars: ✭ 11,748 (+7732%)
Mutual labels:  message
Point
Create and manage shortened URLs with GitHub pages.
Stars: ✭ 146 (-2.67%)
Mutual labels:  url-shortener
M Message
A message plugin for vue.
Stars: ✭ 138 (-8%)
Mutual labels:  message

URLshorting

License GitHub stars GitHub forks

简介

一个url网址缩短平台.

安装方法

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请尝试自己转换.
5.访问网站进行确认.

升级向导

对于升级2.1.0

1.进入mysql数据库执行drop table config;drop table notice;
2.删除网址根目录,可以直接下载最新源码上传至服务器重新安装,不影响原有数据
3.原有数据,必须手动在information表中添加passwd字段值!
4.NOTICE:此版本与老版本不兼容(2.1.0之前,请尝试下载Releases中的tool.php文件放置于网站根目录执行,进行自动格式转换)

版权

xcsoft版权所有 改源码依据apache2开源协议开源,请不要修改版权信息!

更新

v2.1.2更新
1.解决密码BUG
2.修复oauth登录
3.解决时间戳显示问题
4.后台显示超长度用省略号替代
5.短域301跳转

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].