Hello guy's iI have website i. I just want to rewrite url using .htaccess Here is the code which iI want to rewrite:
RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} /search_data.php\?keywords=([^&]+)&f=([^\s&]+) [NC] RewriteRule ^/search_data.php/?$ /search/%1/%2? [R=301,L,NC] this the current url
http://localhost/mywbsite/search_data.php?keywords=one+piece&f=149 iI want to convert this to this
http://localhost/mywbsite/search/one-piece/149 iI tried above code but its not working please help me