Skip to content

mrlihx/ShortUrl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

简单的PHP生成短网址

Nginx伪静态

error_page 404 /404.html;
error_page 403 /404.html;
location ^~ /inc/ {
  return 404;
}
location / {
  try_files $uri $uri/ =404;
  rewrite "/(\d+|\w+)$" /index.php?id=$1;
}

About

简易PHP短网址生成

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published