I have website. I just want to rewrite url using .htaccess Here is the code which I 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 I want to convert this to this
http://localhost/mywbsite/search/one-piece/149 I tried above code but its not working please help me