I cant figure out how to replace this string:
RewriteRule .*\/Custom\/([a-zA-Z0-9\-]+)\/expose_(short|long)\.php(.*) https://111.111.11.11/markt3/Custom/expose.php?customer=$1&variant=$2$3 [QSA,NC,L]
with this:
RewriteRule (.*)\/Custom\/([a-zA-Z0-9\-]+)\/expose_(short|long)\.perl $1/Custom/expose.perl?kunde=$2&variant=$3 [QSA,NC,L]
Can I do this with sed? If yes -> how can do this with sed? All the special charakter making it quite difficult
Thanks