[eluser]Bl4cKWid0w[/eluser]
I can't get my htaccess file to work correctly. I want to remove index.php from the url's, but the htaccess code from the guide messes everything up. How do I do this?
[eluser]Bursh[/eluser]
I fixed this issue by placing the .htaccess file in the base folder; the same one as index.php appears in and just using the basic rewrite code provided by the user guide.
[eluser]coldautumn[/eluser]
Thanks for the guidance. Nope, that didnt resolve it. But removed the error message. Now shows Error 404 "Page not found".
There is something missing in url, as its
this => "http://localhost/Linked//welcome/skill" instead of being
this => "http://localhost/Linked/welcome/skill"
[eluser]coldautumn[/eluser]
no problem with default controller as defined
$route['default_controller'] = "welcome";
The .htaccess file include this
RewriteRule ^(.*)$/Linked/index.php?/$1 [L]
Havent add RewriteEngine on, as when I include the statment, html error 500 occurs, as mentioned before.
Is there a way , I can confirm that apache is accepting htaccess directives and some good resource, where I could learn htaccess coding.
Thanks for the guidance.