Skip to content

Releases: donatj/RewriteRule-Generator

Fix Implode Order

28 Oct 04:32
3c52327
Compare
Choose a tag to compare

-implode argument order corrected in index.php for newer versions of PHP

Make the wrap around GET parameters non-capturing

11 Sep 14:31
f4092ee
Compare
Choose a tag to compare
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

31 Oct 20:17
c522bf6
Compare
Choose a tag to compare

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

10 Jul 20:59
0eba708
Compare
Choose a tag to compare

Rewrite type dropdown was not auto-selecting correctly.

Fix Comment Checkbox

02 May 15:05
0bffef0
Compare
Choose a tag to compare

The comment checkboxes input wasn't being handled properly - this corrects that.

Initial Tagged Composer Release

23 Apr 22:37
ad12853
Compare
Choose a tag to compare

Full rewrite!

Reworked to work with Composer!

  • Easier Maintenance
  • More Future Proof
  • Easier Expansion (cough nginx cough)
  • Unit Tests!

Long untagged release.

23 Apr 20:48
c63a9f0
Compare
Choose a tag to compare
v0.1.0

Change to full URL