• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/apache-793/httpd/modules/mappers/

Lines Matching refs:directory

336     char         *directory;          /* the directory where it applies    */
1768 ? conf->baseurl : conf->directory,
1846 path = apr_pstrcat(r->pool, conf->directory, path,
2825 a->directory = NULL;
2830 a->directory = apr_pstrdup(p, path);
2833 a->directory = apr_pstrcat(p, path, "/", NULL);
2862 a->directory = overrides->directory;
2896 /* server command? set both global scope and base directory scope */
2903 /* directory command? set directory scope only */
2957 /* server command? set both global scope and base directory scope */
2969 /* directory command? set directory scope only */
2970 else { /* is per-directory command */
3129 return "RewriteBase: only valid in per-directory config files";
3246 else { /* is per-directory command */
3665 else { /* is per-directory command */
3726 else { /* is per-directory command */
4124 /* Add the previously stripped per-directory location prefix, unless
4146 * necessary, since it occurs later. If in directory context,
4718 * because we only do stat() on the first directory
4752 * [RewriteRules in directory context]
4777 * for this directory, else return immediately!
4785 if (dconf->directory == NULL) {
4796 * .htaccess file is called before really entering the directory, i.e.:
4797 * URL: http://localhost/foo and .htaccess is located in foo directory
4802 l = strlen(dconf->directory) - 1;
4804 (dconf->directory)[l] == '/' &&
4805 !strncmp(r->filename, dconf->directory, l)) {
4813 rewritelog((r, 8, dconf->directory, "Declining, no further rewriting due to END flag"));
4826 "due to its similar ability to circumvent directory restrictions : "
4843 rewritelog((r, 2, dconf->directory, "init rewrite engine with"
4850 rulestatus = apply_rewrite_list(r, dconf->rewriterules, dconf->directory);
4882 rewritelog((r, 1, dconf->directory, "go-ahead with proxy request "
4890 * first try to replace the directory with its base-URL
4898 rewritelog((r, 2, dconf->directory,
4900 dconf->directory, dconf->baseurl));
4910 * may be prefixed by the current directory path and
4924 cp2 = subst_prefix_path(r, cp, (*dconf->directory == '/')
4925 ? dconf->directory + 1
4926 : dconf->directory,
4938 rewritelog((r, 1, dconf->directory, "escaping %s for redirect",
4955 rewritelog((r, 1, dconf->directory, "%s %s to query string for redirect %s",
4972 rewritelog((r, 1, dconf->directory, "redirect to %s [REDIRECT/%d]",
5003 rewritelog((r, 1, dconf->directory, "initial URL equal rewritten"
5015 rewritelog((r, 2, dconf->directory, "trying to replace prefix "
5016 "%s with %s", dconf->directory, dconf->baseurl));
5019 dconf->directory,
5024 * that the directory prefix is also a valid URL
5036 rewritelog((r, 2,dconf->directory, "strip document_root"
5046 rewritelog((r, 1, dconf->directory, "internal redirect with %s "
5054 rewritelog((r, 1, dconf->directory, "pass through %s", r->filename));
5128 "the base URL of the per-directory context"),