I have this in my .htaccess file:
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule (.*) http://www.example.com$1 [R=301,L]
but whenever I access a file on my root like http://example.com/robots.txt it will redirect to http://www.example.comrobots.txt/.
How can I correct this so that it will redirect correctly to http://www.example.com/robots.txt?
Change your configuration to this (add a slash):
Or the solution outlined below (proposed by @absiddiqueLive) will work for any domain:
If you need to support http and https and preserve the protocol choice try the following:
Where you replace
loginwithcheckout.phpor whatever URL you need to support HTTPS on.I’d argue this is a bad idea though. For the reasoning please read this answer.