vote up 0 vote down star

So here's what I'm trying to do. I have a simple framework and I am using mod rewrite to rewrite the urls so that they point to the correct files. I have a process folder which sits inside the web folder (the web folder is where all the actual website files like images, css, etc are).

This works great but what I am trying to do now is to have a default.php file to process the forms. The file works great if I point the form to it but I want to be able to point the form to it's proper file and if the file is not there then it uses the default.php

The forms are create by a class and the action is set to go to process/{ID OF THE FORM}.php The idea is that anyone can create a form using the class and if they don't need to do anything special, the default.php file will process the form.

I realize I can just set the form class to always use the default.php and then on the default.php file I can check if the proper file exits. If it does, then use that file, if it doesn't then keep processing the form but I am still curious to know if something like this would work on mod rewrite:

RewriteRule ^process/([^/]*) /web/process/$1
RewriteCond %{DOCUMENT_ROOT}/web/process/$1 !-f
RewriteCond %{DOCUMENT_ROOT}/web/process/$1 !-d
RewriteRule ^process/([^/]*) /web/process/default.php [L]
flag

3 Answers

vote up 3 vote down

This rule alone should do it:

RewriteCond %{DOCUMENT_ROOT}web/$0 !-f
RewriteRule ^process/[^/]+$ web/process/default.php [L]

If the requested path cannot be mapped to an existing file, it should be rewritten to the default file.

link|flag
1  
+1 This looks like it should work and it's neat and compact. – David Mar 20 at 18:40
vote up 2 vote down

You generally should have your RewriteCond calls before your RewriteRule. The Rule triggers if the Conds are met.

link|flag
Yes, but how can I rewrite process/filename to web/process/filename and then if the web/process/filename doesn't exist, have it go to web/process/default ? – Carlos Rodriguez Mar 20 at 18:09
Are either situations working for you in test? It apperas that your logic for the default case is correct, but that the first Rule may be executed each time regardless. – Kyle Walsh Mar 20 at 18:13
vote up 1 vote down

I've answered a very similar question.

link|flag
Thanks, I'll give this a try – Carlos Rodriguez Mar 20 at 18:22

Your Answer

Get an OpenID
or

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