I want to configure Kohana 2.x for links in this format:
http:
instead of this:
http://localhost/mysite/web/admin/index.php/support
I removed index.php
the config.php from the file ( $config['index_page'] = '';)
and I added the following line to the .htaccess file:
RewriteRule ^(.*)$ /index.php?/$1 [L]
If you hover over the link, you will see that the links are similar to me, but there is always this error:
Not found
The requested URL / mysite / web / admin / support was not found on this server
I do not know how to change the configuration as I want.
source
share