alexzolotuhin
Новичок
Добрый день (или ночь) 
Проблема в следующем : необходимо
1. Создать папку "c:/tshirtshop", в ней файл test.php
2. Запустить его по адресу http://localhost/tshirtshop/test.php
(Пользуюсь xammp ,windows8.)
Настроил httpd.conf следующим образом:
при обращении возникает ошибка:

Проблема в следующем : необходимо
1. Создать папку "c:/tshirtshop", в ней файл test.php
2. Запустить его по адресу http://localhost/tshirtshop/test.php
(Пользуюсь xammp ,windows8.)
Настроил httpd.conf следующим образом:
HTML:
<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
Alias /tshirtshop "c:/tshirtshop"
Alias /tshirtshop/ "c:/tshirtshop/"
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
ScriptAlias /cgi-bin/ "C:/xampp/cgi-bin/"
</IfModule>
<Directory "C:/tshirtshop">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
HTML:
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster.
Error 403
localhost
Apache/2.4.7 (Win32) OpenSSL/1.0.1e PHP/5.5.6