i use them as well and have not seen any issue.
Moz Q&A is closed.
After more than 13 years, and tens of thousands of questions, Moz Q&A closed on 12th December 2024. Whilst we’re not completely removing the content - many posts will still be possible to view - we have locked both new posts and new replies. More details here.
Best posts made by danrawk
-
RE: Are ampersands in title tags helpful or harmful?
-
RE: Https redirect when certificate expired
this isn't an exact answer, but i might be able to point you in a correct direction . you might be able to do a mod-rewrite by doing a redirection based on rewrite conditions.
for example, we once used the following to send users to our non-https, www page if they enter on a https: url. fyi we use helicon's isapi mod rewriter at www.isapirewrite.com/
RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]