The query-string tag has no wiki summary.
0
votes
0answers
30 views
How do I redirect a URL using rewrite in .htaccess that has a question mark and forward slash where page.html is the variable?
Hello and thanks to all who contribute to this seemingly mind boggling puzzle. I apologize in advance if .htaccess questions belong on server fault.
So I have to move a domain to our hosting servers, ...
2
votes
1answer
34 views
Making Search Queries Indexable
Looking around, most sites (eg. Amazon) encode the parameters of searches into query string. This means that search engines cannot index these queries.
Why don't such sites use URLs rather than query ...
2
votes
1answer
255 views
Pass IMG SRC via GET and echo it? Is that really secure?
I was wondering how I can make a really simple GET and echo request more secure
The code:
$src = $_GET['src'];
echo "<img src='$src' />";
Basically, I have a URL like ...
2
votes
1answer
150 views
Apache rewrite rule that matches a specific query string
I need to rewrite a specific wordpress url to a 404 error:
?page_id=15 => 404
How can I match the query string? Apparently Apache doesn't feed that to the rewrite mod...
1
vote
1answer
242 views
Google and querystring parameter capitalization?
I looked all over the web, but I could not find an answer to this. We all know that Google treats different capitalization of Urls as potentially duplicate content.
My question is, what about ...
1
vote
1answer
447 views
Does Google Analytics automatically handle URLs containing a jsessionid?
When a user visits my web site, the first page they load has a jsessionid appended to the URL like this:
http://foo.com/Welcome.do;jsessionid=1234567890abcdef
Note that the jsessionid parameter is ...
0
votes
0answers
158 views
IIS 6 nested virtual directory redirection
We're running IIS 6 on a WinServer2k3 box and we're having some trouble with the following problem:
E-mails were sent out to users asking them to go to the following URL:
...
0
votes
1answer
120 views
how to deal with URLs containing lot of spammy keywords?
I'm writing a big index of documents and I'm dealing with URLs
as example I will use the car industry:
somesite.com/manifacturer-mazda_model-miata_engine-1600cc_gas_color-red_hard-top-spider_[[A LOT ...
0
votes
0answers
50 views
Query for keywords that google find relevant to the search term [closed]
There is a way to search google in order to find out what other keywords big G considers being relevant to the search term.
Like when you search for black cars you get all the websites that are ...
4
votes
2answers
250 views
Just discovered something I never knew about 404 - could someone explain this
I had always thought that placing anything spurious after the 404 which the server didn't understand would result in a 404; however I had a closer look at a WordPress site which I was building and ...
2
votes
1answer
93 views
Analytics referrer forum thread
When I'm in analytics I sometimes get a referral from a forum, something like:
http://forums.example.com
Then when I click on it, it gives me a page like:
/viewTopic.php
Is there any way to get ...
0
votes
1answer
280 views
Google Analytics include querystring
I've taken an advert out on a site with instruction to point it to:
http://www.example.com/?source=gmb
In Analytics, how do I go about analysing it's data? I can't find anywhere to see people who ...
4
votes
1answer
286 views
How should incorrectly encoded URLs be handled?
Just recently noticed that some sites link with the URL incorrectly percent-encoded, to which my server (LAMP) responds with a 404 Not Found.
For example, for a URL of mine like this:
...
8
votes
1answer
252 views
How can I identify unknown query string fragments that are coming to my site?
In the Google Analytics content overview for a site that I work on, the home page is getting many pageviews with some unfamiliar query string fragments, example:
...
3
votes
2answers
405 views
Where is the query string pagewanted=all coming from?
On my site I use CodeIgniter, which does not allow any use of query strings. Any unacceptable characters in a URL result in a 400 error.
In Google Webmaster Tools I'm seeing several crawl errors ...
1
vote
1answer
104 views
Serve pages based on search query AND avoid cloaking
I have a website offering translation services in several languages (www.your-translations.com), as well as many articles for translators and translation software.
Most visitors come from search ...
21
votes
5answers
491 views
Why is it preferable to use paths with slashes instead of query-string variables in a web page URL?
Why is it preferable to use paths with slashes instead of query-string variables in a web page URL?