php - mod rewrite won't accept my slash -


i've started mod-rewrite , can't figure out. works

rewriterule ^client-(.*)?$ clients.php?client=$1  [nc] 

this doesn't

rewriterule ^client/(.*)?$ clients.php?client=$1  [nc] 

i'm trying make client/nameclient instead of client-nameclient don't understand why won't take slash character

i've searched , found nothing things related ending slash, i've tried

rewritecond  %{document_root}/client/$1  !-f 

but makes no difference

thanks lot

seems, have typo, because see clients.php , clienti.php

rewriterule ^client-(.*)?$ clients.php?client=$1  [nc]                                  ^   rewriterule ^client/(.*)?$ clienti.php?client=$1  [nc]                              , ^ not same 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -