Forum Moderators: Robert Charlton & goodroi
www.example.com%22/
%22http/www.example.com%22
example.com
Of course the site is MIA and have some 302 redirects. Is there anything I can do to fix it? I've added a 301 to cannonizize the URL form domain.com to www.example.com.
Thanx.
[edited by: ciml at 9:57 am (utc) on Mar. 10, 2005]
[edit reason] Examplified [/edit]
The %22 the escape tag for a space. Do you have any badly formatted link tags with too many spaces?
eg: <a href=" [example.com...] "> (there should be no spaces between the quotes.)
Also check your 301 Scripts for excess spaces.
Eg: redirect301(" [example.com...] ")
[edited by: mrMister at 11:35 am (utc) on Mar. 10, 2005]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST}!^www\.domain\.com [NC]
RewriteRule ^(.*)$ [domain.com...] [L,R=301]
</IfModule>
Is there something wrong with it?
I use mod_rewite in .htaccess to change pages from www.example.com?id=23&table=sometable&cat=flowers
to
www.example.com/23/sometable/flowers.htm
Works fine except I keep getting these rogue urls:
www.example.com?id=5%E2%88%8F=90cat=flowers
or similar.
No idea where its coming from. Dont think its internal.