Ovoo 3.2.3 404 error bitnami lampstack aws

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:

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.
 

alexrajesh

Member
Apr 29, 2020
30
1
8
Just got the issue resolved. Providing the solution for anyone who is encountering the same issue. The htaccess file was inside the application folder and just moved it to the projects folder and below is the content of the htaccess file.

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

got the information from this link
 

Forum statistics

Threads
69,228
Messages
908,456
Members
237,096
Latest member
jhonwick08

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu