vote up 10 vote down star
5

Anyone have a graphical tool for developing mod_rewrite rules.

Ideally it would display a pipeline of rewrites and then when given an instance of a uri would show the transforms as the get applied.

It's always a pain to get them setup just right so any way of making it easier would help.

flag

3  
I don't know of any... that sounds like an interesting open source project... – R. Bemrose Mar 6 at 14:30
Interesting idea. If we only knew some excellent programmers who have some spare time. You could add a bounty to this question for the first person to create the app and post a download link! :-) – Kurt W. Leucht Mar 6 at 19:04

5 Answers

vote up 2 vote down

I think it’s quite hard to write one. Because mod_rewrite’s behavior is heavily dependent on the environment it’s used in.

Take for an example the -f expression for the RewriteCond directive to test if TestString exists and is a regular file in the file system. How would you do this without the actual file system?

Though the basic behavior (just the RewriteRule directive) could be implemented.

link|flag
vote up 1 vote down

I dont know of any downloadable tools but there are a few helpful sites that I use to get the basics done:

http://www.webmaster-toolkit.com/mod_rewrite-rewriterule-generator.shtml

http://www.thejackol.com/htaccess-cheatsheet/

link|flag
vote up 0 vote down

I am not aware of any such tool. The way I've addressed this problem was through a set of unit tests that are checking the correctness of my rules. If you want to have your tests always in synch with the config, you'll have to configure your tests to read the load the rules directly from the config file.

./alex

link|flag
vote up -1 vote down

Try this one: http://www.weitz.de/regex-coach/

link|flag
vote up -2 vote down

Sounds like you're looking for an app like RegexBuddy.

link|flag
Nope, problem isn't the regular expressions, it's the way in which the rules interact with each other. – Allain Lalonde Mar 6 at 16:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.