Skip to content

Instantly share code, notes, and snippets.

View tansautn's full-sized avatar
๐Ÿš€
Flying

Zuko tansautn

๐Ÿš€
Flying
View GitHub Profile
@tansautn
tansautn / .htaccess
Last active May 25, 2017 14:47
global.php - dpd
<IfModule mod_rewrite.c>
RewriteEngine On
#Base template URL reslove
RewriteCond %{REQUEST_URI} public/frontend/skin/([^/]*)/(.*)$ [OR]
RewriteCond %{REQUEST_URI} frontend/skin/([^/]*)/(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^public/frontend/skin/([^/]*)/(.*)$ public/frontend/skin/default/$2 [L,NC]
# IMPORTANT : The three lines bellow is using for enforce a no-trailing-slash.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} /(.*)/$