Forum Moderators: phranque
I had a url as :
http://test.example.com/gjsearchresult-q-category-Admin-jobs.html
which is working properly with the below rewrite rule
Now when i have the following url, it gives 404 error
http://www.example.com/gjsearchresult-q-category-QA%2FQC-jobs.html
(http://test.example.com/gjsearchresult-q-category-QA/QC-jobs.html)
My Rule is :
RewriteRule gjsearchresult-q-(.*)-category-(.*)-jobs\.html$ gjsearchresult.php?q=$1+category:($2)&l=&country=&js_radius=0&js_fromage= [L,NC]
What should i do to fix this problem? Any help will be appreciated.
Thanks,
Kiran Gupta.
[edited by: jdMorgan at 2:16 pm (utc) on Sep. 22, 2009]
[edit reason] example.com [/edit]
RewriteRule ^gjsearchresult-q-(([^-]+)+)-category-(([^-]+)+)-jobs\.html$ /gjsearchresult.php?q=$1+category:([b]$3[/b])&l=&country=&js_radius=0&js_fromage= [NC,[b]NE[/b],L]