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...
- Host: GitHub
- URL: https://github.com/ajaymarathe/handle-htaccess
- Owner: ajaymarathe
- License: mit
- Created: 2019-09-14T08:06:05.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-14T08:38:42.000Z (almost 7 years ago)
- Last Synced: 2025-10-08T02:47:03.675Z (9 months ago)
- Topics: htaccess, htaccess-files, working-with-htaccess
- Size: 3.91 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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