從URL與圖案 -htaccess何時URL重定向?查詢字符串
http://example.com/top-100-selenium-interview-questions-answers.html?format=pdf
我想重定向到
的http:// example.com/istqb_dump.pdf
我已經創建了下面的規則重定向。
RewriteCond %{QUERY_STRING} format=pdf [NC]
RewriteRule .* http:// example.com/istqb_dump.pdf? [R=301,L]
它工作正常。
現在還有其他的URL,以及像下面 -
http://example.com/top-35-seo-interview-questions/?format=pdf
http://examplecom/top-15-digital-marketing-interview-questions/?format=pdf
,我想重定向到相應的網址實況
HTTP://example.com/seo.pdf
的http:// example.com/digital-marketing.pdf
但上述規則,所有網址都重定向到
的http:// example.com/istqb_dump.pdf
如何配置企業重定向?
更具體和你讓你的重寫規則匹配...? – CBroe
我想重定向從url - http://example.com/top-100-selenium-interview-questions-answers.html?format=pdf 到此網址 http://example.com/istqb_dump.pdf 請告訴我.htaccess規則。 –