E:\ka\website is my root directory ..
now I put a new directory inside this say "test"
I put a file a.php in E:\ka\website\test\
So to access this file I should put as address
http://localhost/test/a.php
But it says Page not Found .... Why is this so?
Paths and directories in my php.ini file in C:\Windows is as follows:
PHP Code:
;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;
; UNIX: "/path1:/path2"
;include_path = ".:/php/includes"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"
; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server (other than IIS)
; see documentation for security issues. The alternate is to use the
; cgi.force_redirect configuration below
doc_root = "E:\ka\website\"
|