Danny B. wrote:
Hello,
yesterday I've spent couple hours trying to solve pretty simple rewrite problem:
/~user/script/query -> /~user/script.php?query
and couple minutes ago I found out, where the problem was:
The toolserver is apparently set to handle links the way
/~user/script -> /~user/script.php
Then, wouldn't /~user/script/query -> /~user/script.php/query ? (ie. getting the information from the PATH_INFO rather on the query string)
second is pretty nasty (creating of /~user/script directory together with /~user/script.php - that unnecessary and unwantedly doubles the directory's content).
Why double the directory content?
script/index.php: <?Php require('../script.php'); ?>