I really hope you guys can help me out with this. It was working before I don’t know what happened. Thanks for your time.
I get the same result with 10.0.0.6/invoice
However, I can access my personal website and 10.0.0.6/movies
Here is my htaccess file,
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /invoice
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
## Remove the hash in front of the following two lines if you want to force HTTPS
#RewriteCond %{HTTPS} off
#RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
Here is a snippet from my apache.conf
<Directory /home/dan/www/>
Options Indexes FollowSymLinks
DirectoryIndex Index.html
AllowOverride All
Require all granted
</Directory>
<Directory /home/dan/www/website/invoice/>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Require all granted
</Directory>
Here, I will be more clear, I actually have my site registered already. While outside my network, the furthest I can get is mydomain.com/invoice. If I go to mydomain.com/invoice/dashboard I get 403 permission denied.