Have you enabled mod_rewrite in WAMP? It's not enough to have it in the htaccess file.
redirection
Why do I have no access for url redirection of my domain for example localhost/domain/show ,yet I can access localhost/domain, I have already configured my httpd.conf to any access, I use laravel 5.5 with wamp64 and windows10 and my .htaccess is like ``` Options +FollowSymLinks RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ index.php [L] RewriteCond %{THE_REQUEST} ^GET.index.php [NC] RewriteRule (.?)index.php/(.) /$1$2 [R=301,NE,L]
#RewriteCond %{HTTP_HOST} !^www. #RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
#RewriteEngine On RedirectMatch 403 ^/img/?$ RedirectMatch 403 ^/images/?$ RedirectMatch 403 ^/js/?$ RedirectMatch 403 ^/css/?$ RedirectMatch 403 ^/pdf/?$ RedirectMatch 403 ^/slick/?$ RedirectMatch 403 ^/icons/?$
Header set X-XSS-Protection "1; mode=block"Please or to participate in this conversation.