Trouble installing
hiven opened this issue · 1 comments
Hello,
Sorry to be a pain. I'm trying to install this. I dragged all the folders into the root of my hosting, but I already have a public_html folder so I moved the files from public into public_html. This seems to let me load the index page but no other links work now.
I am not able to change my server root to public not public_html. Is there a way I can make it work?
Kindly refer to this Stack Overflow post for a fix; it requires adding a .htaccess
file with the rules below if you are using an Apache style servers:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [NC,L]
In that case, you should remember to install and enable modrewrite
.