i've encountered the following problem:
The .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule view/^(.*)$ view.php?id=$1 [L,QSA]
Is not rewriting my urls
The friendly URL should be like this
And the original url should be rewritten like this:
https://domain.tld/view.php?id=1
The result of the htaccess above is a 404.