Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
349 views
in Q2A Core by
When I go to www.example.com/qa/  I only see a list of files.  I need to go to www.example.com/qa/index.php to start the setup process.  Is this normal?
Q2A version: latest

1 Answer

0 votes
by

Actually there is no need to add index.php on URL. Because it automatically loads the content of index. php

or rewrite the url using htaccess

RewriteRule ^(.*)$ http://www.domain.com/index.php/$1 [R=301,L]
...