簡體   English   中英

htaccess帶有URL中查詢字符串的永久重定向

[英]htaccess permanent redirect with query string in url

如何重定向此頁面:example.com/index.php?option=1&view=news到此/ news

我打的很簡單

Redirect /index.php?option=1&view=news /news

但它不起作用

您需要使用mod_rewrite來匹配查詢字符串:

RewriteEngine On

RewriteCond %{THE_REQUEST} /index\.php\?option=1&view=news [NC]
RewriteRule ^ /news? [R=301,L]

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM