Try this rule in your .htaccess:
RewriteEngine on
Options +FollowSymlinks
# executes repeatedly as long as there are more than 1 spaces in URI
RewriteRule "^(S*)s+(S* .*)$" $1+$2 [N,NE]
# executes when there is exactly 1 space in URI
RewriteRule "^(S*)s(S*)$" /$1+$2 [L,R=302,NE]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…