up vote 0 down vote favorite
share [g+] share [fb]

As a follow up to an earlier question that attracted a whole zero answers, I'm wondering about the possibilities of allowing a web server (apache) to write to its own document root (Linux), in order to dynamically create meta-redirect files.

Of course, this sounds incredibly dangerous, and I'm wary of going the whole hog and granting the web-server user full write-access to its own docroot. Is there a more appropriate way of achieving this?

link|improve this question

67% accept rate
feedback

3 Answers

up vote 2 down vote accepted

What's usually done is to allow writes only to subdirectories, hopefully located in a noexec mounted partition.

That said, it seems to me that you should just create a set of RewriteMap directives to do your dynamic redirection, there's no need to write files in the document root to accomplish that.

I answered similarly in the other question, just for completeness.

link|improve this answer
feedback

Use mod-rewrite, mapping to a program that you write to do the rewrites based on database records or some other mechanism.

Instructions here:

http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html

Look for: "External Rewriting Program" on the page

Edit (from Vinko in the comments, 2.2 docs)

http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritemap

link|improve this answer
feedback

This is incredibly dangerous if you are trying to achieve what your previous question was getting at.

If you are going to go this route, you'll want a ton of testing to prevent people from forcing webserver instructions into htaccess files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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