我在 apache conf 中有以下重写规则。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^([^\.]+\.[^\.]+)$
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]
它将http://example.org/?p=18重定向到http://www.example.org//?p=18。它在域名末尾添加//。如何解决这个问题?
我在 apache conf 中有以下重写规则。
RewriteEngine On
RewriteCond %{HTTP_HOST} ^([^\.]+\.[^\.]+)$
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]
它将http://example.org/?p=18重定向到http://www.example.org//?p=18。它在域名末尾添加//。如何解决这个问题?