I'm trying to put a website online from my webserver. To do that, I've created a virtualHost with Wamp, which is correctly reached when I'm on the local app.
But, when i try to access the website from another computer (from another domain), I've got a 503 error :
You dont have permission to access this resource. Apache/2.4.46 Php/7.4.9 Server at XXX.XXX.XX.XX (mypublicip) Port 80
Here is my httpd-vhosts.conf :
<VirtualHost *:80>
ServerName espaceclient
ServerAlias espaceclient
DocumentRoot "C:/wamp64/www/espace_client/public"
<Directory "C:/wamp64/www/espace_client/public">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Here is my .htaccess, located in my public folder :
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
I've already tried to put a copy of the .htaccess in the root of my project and a lot of configurations, but i don't find...
The port 80 is opened and I've deactived the firewall and the antivirus to test.
If someone has an idea... :p