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
Post a Comment