我正在使用drupal 7.面对奇怪的问题。网址重定向会自动从网址中删除斜杠。
www.example.org/types-one-conditions
重定向后显示
https://www.example.orgtypes-one-conditions
我做错了。
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.example.org/$1 [L,R=301]
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(.*)$ https://www.example.org/$1 [L,R=301]