我有以下网址格式:
<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]
答案 0 :(得分:2)
要将/Conversations?
重定向到/?Conversations
,可以使用以下命令:
RewriteCond %{QUERY_STRING} .*
RewriteRule ^Conversation/?$ / [NC,L,R]