這是我的頁面 http://example.com/index.html。 我想使它像這樣工作。Apache重定向和重寫
- 我想,當他要求 http://example.com/index.html
- 即使他要求http://example.com/index.html?headers=0,他應採取 到http://def.com
- 但採取用戶http://def.com如果他請求同樣的URL與其他查詢參數例如http://example.com/index.html?footer=1,那麼重定向或重寫就不應該發生。他仍然應該看到從http://example.com/index.html?footer=1
響應我已經嘗試
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^/index.html$ http://def.com
謝謝@ sreedev-sb – akimran82
嗨,現在,如果我需要匹配任何不包含查詢字符串頭的東西呢?我試過RewriteCond%{QUERY_STRING} ^(!頭文件)$ [NC] RewriteRule^index.html $ http://def.com [R = 301,L]但這不起作用。 – akimran82
@ akimran82 RewriteCond%{QUERY_STRING}!^標題 –