.HTACCESS动态URL重定向

时间:2018-07-04 16:45:50

标签: php .htaccess url-redirection

我有以下网址格式:

<A href="/Conversations?Nicholas_Carter">Nicholas Carter</A>

如果有人输入:/Conversations?到:/?Conversations

,如何重定向

我当前的代码是:
用于/会话?Nicholas_Carter

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ Conversations.php?with=$1 [L,QSA]

以及/?会话

RewriteCond %{QUERY_STRING} ^([^=]+)$ 
RewriteRule ^/?$ MainContents.php?page=%1 [L]

1 个答案:

答案 0 :(得分:2)

要将/Conversations?重定向到/?Conversations,可以使用以下命令:

RewriteCond %{QUERY_STRING} .*
RewriteRule ^Conversation/?$ / [NC,L,R]