https://github.com/lukechilds/htconvert
Convert .htaccess redirects to nginx.conf redirects
https://github.com/lukechilds/htconvert
apache cli nginx sysadmin
Last synced: 2 months ago
JSON representation
Convert .htaccess redirects to nginx.conf redirects
- Host: GitHub
- URL: https://github.com/lukechilds/htconvert
- Owner: lukechilds
- License: mit
- Created: 2016-06-02T17:37:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-11T09:22:35.000Z (almost 6 years ago)
- Last Synced: 2025-04-08T15:04:58.188Z (7 months ago)
- Topics: apache, cli, nginx, sysadmin
- Language: JavaScript
- Size: 50.8 KB
- Stars: 189
- Watchers: 8
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cli-apps - htconvert - Convert .htaccess redirects to nginx.conf redirects. (Development / Devops)
- fucking-awesome-cli-apps - htconvert - Convert .htaccess redirects to nginx.conf redirects. (Development / Devops)
README
# htconvert
> Convert .htaccess redirects to nginx.conf redirects.
[](https://travis-ci.org/lukechilds/htconvert)
[](https://coveralls.io/github/lukechilds/htconvert?branch=master)
[](https://www.npmjs.com/package/htconvert)
[](https://www.npmjs.com/package/htconvert)
## Install
```shell
npm install --global htconvert
```
## Usage
```shell
$ cat .htaccess | htconvert > nginxRedirects.conf
# or
$ htconvert -f .htaccess > nginxRedirects.conf
```
`.htaccess`
```apacheconf
# Frontend Redirects
Redirect 301 /deleted-page/ https://website.com/new-page/
Redirect 302 /new-feature/ https://website.com/coming-soon/
# Admin Redirects
Redirect 301 /admin/ https://website.com/?login=true
```
`nginxRedirects.conf`
```
# Frontend Redirects
location /deleted-page/ {
return 301 https://website.com/new-page/;
}
location /new-feature/ {
return 302 https://website.com/coming-soon/;
}
# Admin Redirects
location /admin/ {
return 301 https://website.com/?login=true;
}
```
### Options
```shell
$ htconvert --help
Usage: htconvert [options]
Options:
-h, --help output usage information
-V, --version output the version number
-f, --file [.htaccess] File containing .htaccess redirects
```
### Node
This is also usable as a node module
```shell
npm install --save htconvert
```
```js
var htconvert = require('htconvert');
var htaccess = 'Redirect 301 /deleted-page/ https://website.com/new-page/';
htconvert(htaccess);
// `location /deleted-page/ {
// return 301 https://website.com/new-page/;
// }`
```
## License
MIT © Luke Childs