I have used Redirect rules to decode queries like
user/34 to user.php?id=34
The problem is now using relative urls in user.php
image.png is now searched relatively to not existing folder user
what I want now is to attach / to each relative path.
I have tried
RewriteCond %{REQUEST_URI} !^/(.*)$
RewriteRule ^(.*)$ /$1
But this does not work