HI all,
I saw that this problem occurs every time, but still all answers I found on this forum are not working in my case🙂
I am using xampp on windows 10 and just wanted to check this software (v.3) . apparently the installation did go well, I've configured vhost to some tasty.dev.local url and I am able to se the frontpage and all links like
http://tasty.dev.local/local/menus
http://tasty.dev.local/locations
http://tasty.dev.local/contact
or
http://tasty.dev.local/admin
work as well, so I am quite sure the default .htaccess in the root directory is working, but why all others links (with the same url structure) like http://tasty.dev.local/reservation/reservation or http://tasty.dev.local/account/login give me 404 Page not found error?
Actually I am using this example of htaccess
https://github.com/tastyigniter/TastyIgniter/blob/master/example.htaccess
but tried some another solutions as well, even very simple like
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^assets/downloads/(.*) not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
but this does not change very much.
Soemone of you has any idea how to solve this or shall I use direct windows subsystem for linux on win10 machine?
Thanks and best regards,
Konny