Skip to content

gouravjangid5044/link_shortener

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

link_shortener

Live hosted link => www.shortify.live

Create a .htaccess file in root directory and add this code in it to change permission

This will hit all the request on index.php page example

Example https://domain/shorten_link

This will hit index.php and shorten_link will be taken from the url and script will perform action on that particular shorten link

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published