Ghifari160/urlShortener/master/src/client.htaccess - Htaccess File

Ghifari160/urlShortener/master/src/client.htaccess

ErrorDocument 404 /e/404.html

Options +FollowSymLinks

RewriteEngine On

RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^$ http://www.ghifari160.com/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule ^assets/(.*)$ / [R=301,L]
RewriteRule ^e/(.*)$ / [R=301,L]
RewriteRule ^/?([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)$ redirect.php?dir=$1&short=$2 [L,NC,QSA]
RewriteRule ^([a-zA-Z0-9_]+)$ redirect.php?short=$1 [L,NC,QSA]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache