Releases: donatj/RewriteRule-Generator
Releases · donatj/RewriteRule-Generator
Fix Implode Order
Make the wrap around GET parameters non-capturing
RewriteCond %{QUERY_STRING} (^|&)foo\=13($|&)
RewriteCond %{QUERY_STRING} (^|&)bar\=baz($|&)
is now generated as
RewriteCond %{QUERY_STRING} (?:^|&)foo\=13(?:$|&)
RewriteCond %{QUERY_STRING} (?:^|&)bar\=baz(?:$|&)
which makes the generated code easier to modify should you want to actually capture something, and is a very minor performance boost.
Bark About URL Fragments
URI fragments ala #anchor
both in the FROM and TO URI's cannot be handled.
Updates the generator to complain about the existence of either.
Fix tiny UI Bug
Rewrite type dropdown was not auto-selecting correctly.
Fix Comment Checkbox
The comment checkboxes input wasn't being handled properly - this corrects that.
Initial Tagged Composer Release
Full rewrite!
Reworked to work with Composer!
- Easier Maintenance
- More Future Proof
- Easier Expansion (cough nginx cough)
- Unit Tests!
Long untagged release.
v0.1.0 Change to full URL