mod rewrite - .htaccess file doesn't work correctly when I change my url -
i want change url from:
www.domain.com/includes/edit.php?products=cloth
to:
www.domain.com/products/cloth
i'm using code right it's not working:
rewriteengine on rewriterule ^products/([a-za-z0-9-]+)/?$ edit.php?q=$1 [nc,l]
try :
rewriteengine on rewritecond %{request_filename} !-d [or] rewritecond %{request_filename} !-f rewriterule ^products/([a-za-z0-9-]+)/?$ /includes/edit.php?products=$1 [qsa,nc,l]
Comments
Post a Comment