RewriteEngine on
RewriteRule ^show/([^/]{15})$ show.php?id=$1 [L]
Como redirecionar um formulário de página show.php? id = (15charstring) para show / (15charstring)
Eu tentei como isso está fazendo inversa significa que está redirecionando / show / (15chars) para show.php? id = (15chars)
RewriteEngine on
RewriteRule ^/show/([a-zA-Z0-9]{15})$ http://site.com/show.php?id=$1
O segundo caso é que eu tenho que redirecionar para outra página se ele adicionar & m = true ao URL
show.php?id=(15chars)&m=true
html/show.php?id=(15chars).
RewriteEngine on
RewriteRule ^show/([^/]{15})$ show.php?id=$1 [L]