I want to put my website online. I am using WampServer 2.2. Now, I've set up wamp as follows:
<Directory />
AllowOverride All
Options All
Require all granted
Order allow,deny
</Directory>
Listen 81
<VirtualHost *:81>
ServerName rti.etf.rs
DocumentRoot "C:/wamp/www"
DirectoryIndex index.php
</VirtualHost>
I've opened up port 81 in Windows Firewall. Now, when I try opening localhost:81 my webpage opens well. However, when I try accessing it with my external IP address 176.xxx.xxx.xxx:81, I get a 403 Forbidden error. I see these requests in the Apache access log, so I guess that part is set up well, but I must be missing something it the Apache configuration.
Edit: Put Online option is activated.
Any helpful ideas?