alexrajesh
Member
- Apr 29, 2020
- 30
- 1
- 8
Hi I have installed the ovoo 3.2.3 version on bitnami lampstack on aws. I was able to install the app.
When I go to my link it opens the home page, but post that none of the links work. Clicking on any other link gives a 404 error.
The default htaccess file had the follow:
Have replaced it with the following:
And restarted the apache server but still have the same issue.
When I go to my link it opens the home page, but post that none of the links work. Clicking on any other link gives a 404 error.
The default htaccess file had the follow:
Code:
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
Have replaced it with the following:
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
And restarted the apache server but still have the same issue.