H
Asked
when i go to mysite.com/d/ it loads the index.php as it should and shows the forum, but when i click login it goes to mysite.com/d/login and throws a 404, but if I put mysite.com/d/index.php/login or mysite.com/?/login then it works, but then it will go back to not working as soon as i click something because all the links go to mysite.com/d/login which means i cannot do anything at all.
i added
```
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
```
to .htaccess, but i still cant get any links to work properly
i added
```
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
```
to .htaccess, but i still cant get any links to work properly
- HAnsweredok i went to config and manually added index.php so it shows in all links so i can try things out, but now it shows index.php everywhere which is pretty ugly. how can i fix this?
- MSAnsweredHello,
Please don't add the index_page to config. You should resolve your issue with .htaccess file. Activating the godaddy line and commenting the other in .htaccess should do the trick. If not, you need to check with your host/server admin as they can provide details about this.
Thank you - HAnsweredi will remove index_page from config as soon as i can know what to put in htaccess. it is a standard LAMP server.
i have to say it's a bit weird it comes without the htaccess file and telling me how to make it?
>Activating the godaddy line and commenting the other in .htaccess should do the trick.
activating what and commenting what? i just put the stuff i added in the first post as u can see, please be more specific. - HAnsweredsolution from captcha thread
- MSAnswered**[hanni](/u/vohiyo)** Hello,
Not every server configured same so it's impossible to make it work out of the box for every one. However a little changes in the .htaccess would resolve the issue. The `.htaccess` file is included in your download.
I hope, your issue is resolved as you have accepted the answer. If not, please let me know with details.
Thank you - Login to Reply