kjb1891 New member Mar 12, 2007 216 1 0 Jun 25, 2008 #1 Is there a way to cut query strings off of URLs when they're displayed? For example: domain.com/subfile/?querystring --> domain.com/subfile/
Is there a way to cut query strings off of URLs when they're displayed? For example: domain.com/subfile/?querystring --> domain.com/subfile/
aim New member Jan 15, 2007 1,257 39 0 Minneapolis, MN www.webproleads.com Jun 25, 2008 #2 Use POST or run it through a page that cleans it before displayed to the user. Also should post in Design, Development & Programming - WickedFire - Affiliate Marketing Forum - Internet Marketing Webmaster SEO Forum
Use POST or run it through a page that cleans it before displayed to the user. Also should post in Design, Development & Programming - WickedFire - Affiliate Marketing Forum - Internet Marketing Webmaster SEO Forum
nachoninja Love the dog Oct 3, 2006 4,039 49 0 Fleshlightville Jun 25, 2008 #3 you should be able to write a rule to 301 in your .htaccess
G Gumby! New member Mar 17, 2007 859 27 0 Jun 25, 2008 #4 kjb1891 said: Is there a way to cut query strings off of URLs when they're displayed? For example: domain.com/subfile/?querystring --> domain.com/subfile/ Click to expand... Code: RewriteEngine on RewriteCond %{QUERY_STRING} . RewriteRule (.*) /$1? [R=301]
kjb1891 said: Is there a way to cut query strings off of URLs when they're displayed? For example: domain.com/subfile/?querystring --> domain.com/subfile/ Click to expand... Code: RewriteEngine on RewriteCond %{QUERY_STRING} . RewriteRule (.*) /$1? [R=301]