Skip to content

CLI tool that parses simple Apache mod_rewrite directives into JSON

Notifications You must be signed in to change notification settings

brycefisher/htaccess2json.rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

htaccess2json Build Status Flattr this

Parses simple mod_rewrite directives like this:

# Old.com
RewriteRule /old.html http://example.com/new [R=301,L]
RewriteRule /old/*.html http://example.com/new [R=301,L,QSA]
RewriteRule .* http://new.com [R=302,L]

into json like this

[{
  "pattern":"/old.html",
  "dest":"http://example.com/new",
  "flags":["R=301","L"],
  "domain":"old.com"
},{
  "pattern":"/old/*.html",
  "dest":"http://example.com/new",
  "flags":["R=301","L","QSA"],
  "domain":"old.com"
},{
  "pattern":".*",
  "dest":"http://new.com",
  "flags":["R=302","L"],
  "domain":"old.com"
}]

Building

$ curl https://static.rust-lang.org/rustup.sh | sudo sh
$ git clone https://github.com/brycefisher/htaccess2json.rs.git && cd htaccess2json.rs
$ cargo build
$ ./target/htaccess2json

The first command installs the Rust compiler and package manager, and it often requires several minutes to download the binaries depending on your connection speed.

Once you've built htaccess2json, you'll probably want to install it globally so that you can invoke it anywhere:

$ sudo ln -s `pwd`/target/htaccess2json /usr/bin/htaccess2json

Command Line Usage

$ htaccess2json -i input -o output -d domain
Saved to disk. 178 rules captured, 2 rules skipped.
  • -i the input file, usually .htaccess. Since I often need to edit .htaccess, I recommend copying your htaccess so that you can safely modify it if you hit an edge case.
  • -o output file, usually ending in .json
  • -d domain name for the site using the htaccess rule.

All options are required.

Intended Use Case

If you have a large collection of redirect rules that you want to preserve (for SEO or whatever), but you want to move off Apache, it can take a lot of time to sift through the RewriteRules. Capturing a representation of this information as JSON should make it easy to port to a Node web app, or any other platform that can parse JSON easily.

I intend to incorporate this data from several domains/servers into a single "redirect server" which handles all the old domains.

Limitations

  • Only RewriteRule directives are parsed
  • No support for RewriteCond at the moment (these are simply skipped)
  • No support for replacements in the destination (Ex: $1)
  • Must provide a domain at the command line
  • Supported flags are: R=301, L, R=302, QSA

Contributions Welcome! Flattr this

If you find this software useful, consider flattring. Pull requests and issues welcome as well.

About

CLI tool that parses simple Apache mod_rewrite directives into JSON

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages