Friday 3 January 2020

.htaccess - Re-direct problem with HTACCESS edit

RewriteEngine On
RewriteCond %{HTTP_HOST} ^tsgcs.ca$
RewriteRule (.*) http://www.tsgcs.ca/$1 [R=301,L]




This is giving me errors 'Firefox has detected that the server is redirecting the request for this address in a way that will never complete.'



Any ideas why?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...