Skip to main content
tidied
Source Link

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

Hello guy's 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

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

Source Link
Dexter
  • 1.8k
  • 4
  • 27
  • 55

Rewrite url not working in htaccess

Hello guy's 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