php Programming Glossary: document_root
How can I use .htaccess to hide .php URL extensions? http://stackoverflow.com/questions/10028025/how-can-i-use-htaccess-to-hide-php-url-extensions this question Use this code in your .htaccess under DOCUMENT_ROOT Options FollowSymLinks MultiViews # Turn mod_rewrite on RewriteEngine..
htaccess reverse directory http://stackoverflow.com/questions/10487909/htaccess-reverse-directory httpd.conf and then put this code in your .htaccess under DOCUMENT_ROOT directory # Turn mod_rewrite on RewriteEngine On RewriteBase.. to the parent directory of current REQUEST_URI RewriteCond DOCUMENT_ROOT 1 2.php f RewriteRule ^ . ^ 1 L # if current REQUEST_URI .php.. # load it be removing optional trailing slash RewriteCond DOCUMENT_ROOT 1.php f RewriteRule ^ . 1.php L Explanation Let's say original..
Is it a good idea to use $_SERVER['DOCUMENT_ROOT'] in includes? http://stackoverflow.com/questions/11893832/is-it-a-good-idea-to-use-serverdocument-root-in-includes it a good idea to use _SERVER 'DOCUMENT_ROOT' in includes Is this for example a good idea require_once _SERVER.. Is this for example a good idea require_once _SERVER 'DOCUMENT_ROOT' .' include.php' If you have two virtual hosts on the same server.. improve this question I've seen cases where _SERVER 'DOCUMENT_ROOT' is not set or is not what you would expect i.e. not set in..
$_SERVER['HTTP_REFERER'] missing http://stackoverflow.com/questions/12369615/serverhttp-referer-missing 192.168.1.10 SERVER_PORT 80 REMOTE_ADDR 192.168.1.77 DOCUMENT_ROOT var www html SERVER_ADMIN root@localhost SCRIPT_FILENAME var..
Best way to cache resized images using PHP and MySQL http://stackoverflow.com/questions/140734/best-way-to-cache-resized-images-using-php-and-mysql be RewriteCond REQUEST_URI ^ images cached RewriteCond DOCUMENT_ROOT REQUEST_URI f RewriteRule . images generate.php 1 L Regards...
Remove .php from urls with htaccess http://stackoverflow.com/questions/15917258/remove-php-from-urls-with-htaccess to dir foo.php RewriteCond REQUEST_FILENAME d RewriteCond DOCUMENT_ROOT 1.php f RewriteRule ^ . 1.php L My site is hosted in a subfolder..
How can I get the “application root” of my URL from PHP? http://stackoverflow.com/questions/2311983/how-can-i-get-the-application-root-of-my-url-from-php share improve this question For the web root there is DOCUMENT_ROOT as pointed out in several answers. For the application root..
Best method for creating absolute path in PHP? (See 3 methods listed inside) http://stackoverflow.com/questions/2893088/best-method-for-creating-absolute-path-in-php-see-3-methods-listed-inside of php and almost any server config. 1. php echo _SERVER 'DOCUMENT_ROOT' 2. php echo getcwd 3. php echo dirname __FILE__ Thank you so.. will always work regardless of platform or webserver. DOCUMENT_ROOT may work differently between server configurations Apache vs..
How to include PHP files that require an absolute path? http://stackoverflow.com/questions/4369/how-to-include-php-files-that-require-an-absolute-path this question This should work root realpath _SERVER DOCUMENT_ROOT include root inc include1.php Edit added imporvement by aussieviking..
Email Tracking - GMail http://stackoverflow.com/questions/5052893/email-tracking-gmail my server. I get the following headers print_r _SERVER DOCUMENT_ROOT usr local apache htdocs GATEWAY_INTERFACE CGI 1.1 HTTP_ACCEPT..
How to return a file in PHP http://stackoverflow.com/questions/6175533/how-to-return-a-file-in-php I think you want this attachment_location _SERVER DOCUMENT_ROOT . file.zip if file_exists attachment_location header _SERVER..
.htaccess redirect if file doesn't exist http://stackoverflow.com/questions/667284/htaccess-redirect-if-file-doesnt-exist rewrite RewriteRule ^process ^ web process 1 RewriteCond DOCUMENT_ROOT web process 1 f RewriteCond DOCUMENT_ROOT web process 1 d RewriteRule.. 1 RewriteCond DOCUMENT_ROOT web process 1 f RewriteCond DOCUMENT_ROOT web process 1 d RewriteRule ^process ^ web process default.php.. this question This rule alone should do it RewriteCond DOCUMENT_ROOT web 0 f RewriteRule ^process ^ web process default.php L If..
Php handling vs Apache RewriteRules and RegExp: which one is quicker? http://stackoverflow.com/questions/7702667/php-handling-vs-apache-rewriterules-and-regexp-which-one-is-quicker 1 1 static 1 QSA L RewriteCond ENV STATIC ^ RewriteCond DOCUMENT_ROOT ENV PLOCAL ENV EXT REQUEST_FILENAME f RewriteRule ^ . DOCUMENT_ROOT.. ENV PLOCAL ENV EXT REQUEST_FILENAME f RewriteRule ^ . DOCUMENT_ROOT ENV PLOCAL ENV EXT REQUEST_FILENAME QSA L RewriteCond ENV STATIC.. QSA L RewriteCond ENV STATIC ^ RewriteCond DOCUMENT_ROOT ENV Pcm ENV EXT REQUEST_FILENAME f RewriteRule ^ . DOCUMENT_ROOT..
Using PHP to get DOM Element http://stackoverflow.com/questions/8144061/using-php-to-get-dom-element reference div id column_profile php require_once _SERVER DOCUMENT_ROOT . peripheral profile.php searchResults isset _GET s performSearch..
Remove 'index.php' from URL with .htaccess http://stackoverflow.com/questions/9608366/remove-index-php-from-url-with-htaccess This is the code you can use in your .htaccess under DOCUMENT_ROOT to remove index.php from URI Options FollowSymLinks MultiViews..
|