An open API service indexing awesome lists of open source software.

https://github.com/ajaymarathe/handle-htaccess

Hi there, this is small .htaccess docs, Thanks...
https://github.com/ajaymarathe/handle-htaccess

htaccess htaccess-files working-with-htaccess

Last synced: 5 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# 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]

+ https://varvy.com/pagespeed/htaccess.html