403 Запрещенная ошибка на Genymotion

Я установил на моем компьютере эмулятор genymotion и хочу получить к нему доступ к локальному серверу WAMP, и я запустил ipconfig на моем cmd так что я получил этот IP_address 192.168.56.1 но проблема в том, что я всегда получаю эту ошибку

403 Запрещено
У вас нет разрешения на доступ / на этом сервере

Я перепробовал все ответы, данные в этом вопрос пока никто не решил мою проблему.

я бегу
Мысль 5.5.8,
PHP 5.3.5 и
Apache 2.2.17

Пожалуйста, кто-нибудь знает, как я могу исправить эту ошибку?

@KANAYOAUSTINKANE. Это мой код или поддомен

<Virtualhost *:80>
DocumentRoot "C:/wamp/www/mobile"ServerName localhost
ServerAlias m.local host
</Virtualhost>

Пожалуйста, помогите мне, я был так встревожен

2

Решение

Хорошо, вот решение.

Первый шаг

Измените местоположение вашего виртуального хоста и добавьте / в конце, как это

DocumentRoot "C:/wamp/www/mobile/"

Второй шаг

Перейти к вашей httpd.conf файл находится в C:/camp/bin/apache/Apache2.2.17/conf/httpd.conf перейти к линии, которая имеет Listen 80 и изменить его на Listen *:80 это позволит прослушивать любой IP-адрес

в заключение

Вы идете до конца своего httpd.conf файл и добавить это

# Tells Apache to identify which site by name
NameVirtualHost *:80
# Tells Apache to serve the default WAMP Server page to "localhost"<VirtualHost 127.0.0.1>
ServerName localhost
DocumentRoot "C:/wamp/www"</VirtualHost>
# Tells Apache to serve your mobile pages to "m.localhost"<VirtualHost 127.0.0.1>
# The name to respond to ServerName m.localhost
# Folder where the file is located which in your case is
DocumentRoot "C:/wamp/www/mobile/"<Directory "C:/wamp/www/mobile/">
Allow from all
Order Allow,Deny
AllowOverride All
</Directory>
# Apache will look for these files, in this order, if no file is specified in the URL, but you can add more files apart from the two I listed depending on what you are having
DirectoryIndex index.html index.php
</VirtualHost>
#Here you duplicate the code for your mobile site to also accept your IP address which is 192.168.56.1
<VirtualHost 192.168.56.1>
# The name to respond to ServerName m.localhost
# Folder where the file is located which in your case is
DocumentRoot "C:/wamp/www/mobile/"<Directory "C:/wamp/www/mobile/">
Allow from all
Order Allow,Deny
AllowOverride All
</Directory>
# Apache will look for these files, in this order, if no file is specified in the URL, but you can add more files apart from the two I listed depending on what you are having
DirectoryIndex index.html index.php
</VirtualHost>

Проверено и работает. Пожалуйста, не забудьте пометить ответ

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]