Simple link shortener that allows for custom URL codes, written using own PHP-SDKv2
- Optional custom URL codes
- Realtime url-code availability checking using javascript
- PHP 8.2
- Composer
- MariaDB/MySQL server
- Web server (routing all requests to public/index.php)
- Clone repository
- Run
composer install- Import DB scheme
- Edit DB credentials in App/Config.php
- Route all requests to public/index.php
- Done!
- NGINX
root /path/to/public;
index index.php;
location / {
try_files $uri /index.php$is_args$args =404;
}