HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
V2021.009 can not open any link
Dear Support
I installed fresh version v2021.009
VPS (PHP 7.3, MariaDB 10.5, Nginx 1.1.8)
It just show homepage content with any link. i got what the reason but i dont know fix it
- Default URL when i click: abc .com/categories (it doesn't work)
- But when i manual added "index.php?p=": abc .com/index.php?p=/categories/ (It worked)
How to fix it?
Thanks
0
Comments
Put this in conf/config.php:
$Configuration['Garden']['RewriteUrls'] = true;
If it doesn't work, add this in .htaccess file
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
Your nginx server configuration file is the problem. Have you seen this?