regex - Htaccess rewrite url not working -



regex - Htaccess rewrite url not working -

i have created .htaccess file rewrite url. when opened url should rewrited htaccess url not changed. here .htaccess

options +followsymlinks -multiviews rewriteengine on rewriterule seller/username/(.*)/ seller.php?username=$1 rewriterule seller/username/(.*) seller.php?username=$1

please help me out beginner htaccess. in advance

have way:

options +followsymlinks -multiviews rewriteengine on rewritecond %{the_request} \s/+seller/\.php\?username=([^\s&]+) [nc] rewriterule ^ /seller/username/%1? [r=302,l] rewriterule ^seller/username/(.+)/?$ seller.php?username=$1 [l,qsa]

regex apache .htaccess mod-rewrite url-rewriting

Comments