I'm getting mad ... please help me:
Going from subdomain.domain.net/short/index.php?link=abcd to subdomain.domain.net/short/abcd
I tried
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^short/(.*)$ short/index.php?l=$1&%{QUERY_STRING} [NC,L]
But I always only get Error 500 or 404
Any suggestions for a potato?
Thank you
Found a solution:
RewriteEngine on
RewriteBase /short
RewriteRule ^(.*)$ index.php?l=$1&%{QUERY_STRING} [L]