Hi guys,
When I access my forum on http://127.0.0.1/forum/
(with trailing slash) it works great!
But when i access my forum on http://127.0.0.1/forum
(without trailing slash) it shows me this error:
/forumcategories Not Found
What can i do to fix it?
I have this "url" in my config.json:
"url": "http://127.0.0.1:4567/forum",
And my apache have this proxy configuration on VirtualHost:
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass /forum http://127.0.0.1:4567/forum
ProxyPassReverse /forum http://127.0.0.1:4567/forum
ProxyPass /forum/ http://127.0.0.1:4567/forum/
ProxyPassReverse /forum/ http://127.0.0.1:4567/forum/
Tried a lot of things, but nothing seems to work.
Anyone have a clue of how can I get this?