Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

208
Views
RewriteCond fetch array values from Query_String and redirect as url path

Using htaccess how to convert

https://www.example.com/plex/?param1[]=apple

To

https://www.example.com/plex/apple/

Below condition throws an error:

.htaccess: RewriteCond: cannot compile regular expression 'param1[]=(.*)'

RewriteCond %{QUERY_STRING} param1[]=(.*) 
RewriteRule ^(.*)$ /%1/ [QSD,L,R=301]
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You need to escape [ and ] as those are special regex meta characters:

RewriteCond %{QUERY_STRING} (?:^|&)param1\[\]=([^&]*) [NC]
RewriteRule ^ %{REQUEST_URI}/%1 [QSD,L,R=301]
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!