@dedrick
To rewrite a space (%20) in .htaccess, you can use the following RewriteRule:
RewriteRule "^([^ ]) (.)$" /$1%20$2 [N]
This rule will match any URL with a space in it and replace the space with %20. Make sure to place this rule in your .htaccess file within the root directory of your website.