URLshorting,网址缩短源码,支持缩短时显示二维码,

独创密语功能,可通过短域向别人传达信息

域名缩短源码伪静态:

1、Nginx:

if (!-e $request_filename) {rewrite ^/(.*)$ /index.php?id=$1 last;}

2、Apache:

<IfModule mod_rewrite.c> RewriteEngine OnRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ /index.php?id=$1 [L]</IfModule>
image.png
image.png
image.png