Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 471 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 471 Bytes

handle-htaccess

Hi there, this is small .htaccess docs, Thanks...

Redirect to index.html

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.html?path=$1 [NC,L,QSA]

Redirect into another folder

RewriteEngine On
RewriteRule ^(.*)$ folder-name/$1 [L]