Replace query string with file extension using htaccess Rule – Apache
I have this link https://career.guru99.com/top-50-c-sharp-interview-questions-answers/?format=pdf I want to redirect it to https://www.guru99.com/pdf/c-sharp-interview-questions.pdf I created the following htaccess rule RewriteCond %{QUERY_STRING} format=pdf [NC] RewriteRule ^c-sharp-interview-questions.html /pdf/c-sharp-interview-questions.pdf? [R=301,L] But the challenge is I have 100+ links and I will have to manually…