-1

I'm trying to make my apache visible on my local network for being able to acces my wordpress site hosted there, by editing httpd.conf file on /bin/apache/conf/ and im getting a Permision Error, but I can't find any clear content on the Internet.

Im using UWAMP 3.1.0 and It must be something related with this part of the code:

<VirtualHost *:80>
#UWAMP Generate Virtual Host
    DocumentRoot "F:/UwAmp/www/"
    ServerName "main-serveur"
    Alias "/mysql/" "F:/UwAmp/phpapps/phpmyadmin/"
    Alias "/mysql" "F:/UwAmp/phpapps/phpmyadmin/"
    Alias "/uwamp/" "F:/UwAmp/phpapps/uwamp/"
    Alias "/uwamp" "F:/UwAmp/phpapps/uwamp/"
    <Directory "F:/UwAmp/phpapps/phpmyadmin/">
        AllowOverride All
        Options FollowSymLinks Includes Indexes 
        Require local
    </Directory>
    <Directory "F:/UwAmp/phpapps/uwamp/">
        AllowOverride All
        Options FollowSymLinks Includes Indexes 
        Require local
    </Directory>
    <Directory "F:/UwAmp/www/">
        AllowOverride All
        Options FollowSymLinks Indexes 
        Require local   
    </Directory>

more concretely at the end:

<Directory "F:/UwAmp/www/">
        AllowOverride All
        Options FollowSymLinks Indexes 
        Require local   
</Directory>

This is what I get after entering the IP where the site is hosted.

sorry for asking something so simple but I'm learning

Thank you in advance

4

1 回答 1

0

{ONLINE_MODE}

If UwAmp is on Online mode, your website is available for all.
{ONLINE_MODE} will be replaced by :
Order allow,deny
Allow from all

If UwAmp is on Offline mode, your website is available only for your computer.
{ONLINE_MODE} will be replaced by :
Order deny,allow
Allow from 127.0.0.1 localhost
于 2019-01-30T10:52:25.713 回答