- or download this
url {
# some Perl code to be invoked on receiving the URL
}
- or download this
/edit?node=(\w+);... {
print "You're trying to edit '$node'";
...
/(.*) {
print "Don't know how to handle " . $q->query_path;
};
- or download this
# /edit?node=(\w+);... {
# print "You're trying to edit '$node'";
...
print "You're trying to edit '$node'";
};