Uniform Resource Locators are a generic scheme for specifying the location of resources. They are most commonly used for identifying locations on the Internet (such as webpages and email addresses) but can be used to reference almost anything.
Questions tagged [url]
519 questions
-1
votes
3 answers
Systematically add fragment to URLs
I have a mean-stack website with html5mode enabled. In index.html, I have . And I have the following nginx setting such that www.myweb.com/home becomes automatically www.myweb.com/1/home (www.myweb.com/js/abc.js remains…

SoftTimur
- 337
- 2
- 8
- 16
-1
votes
1 answer
Polling x amount of URL's every second with Java
Is it even possible to poll let's say 10,000 URL's every second? I do keep threading in mind with the following code:
for (int i = 0; i < 10000; i++) {
Executors.newScheduledThreadPool(10).scheduleWithFixedDelay(new Runnable() {
…
-1
votes
1 answer
Pointing subdomain to EC2 Server without changing addresss
I am trying to point my subdomain to an EC2 Server.
I added the following DNS entries on my registry.
A Record test1 => EC2 Elastic IP Address
C Name test2 => xxxxx-amazonaws.com
When I test them, both test1.example.com and test2.example.com go to…

Kelvin
- 103
- 2
-1
votes
1 answer
Simple, failsafe DNS setup for multiple domains aiming one site
I would like to setup DNS records to map multiple domains to one website in a failsafe and clean way. Here's the situation:
I have a couple of domains:
mydomain.com
mydomain.de
mydomain.net
My requirements:
All domains, root and www should - as a…

Marc
- 141
- 5
-1
votes
1 answer
different servers on different ports: friendly url?
I have different servers for different applications running on different ports and I want users to use friendly url to browse the applications. e.g.
localhost:8080 run by tomcat -> I want users to use localhost/jira as url
localhost:9000 run by…

Kumar Gaurav
- 121
- 5
-1
votes
2 answers
check website through IP address
I hosted multiple websites on a single VPS server, with single IP address when I entered IP address in as url it shows default website page that fine
but i hosted multiple website in a single server by creating different directories for each domain…

bhv
- 99
- 2
-1
votes
1 answer
Retrieving the search keywords from a search result entry (Google)
Is it possible to go back to the actual google query string given one or more URL results?
for example, if I do a search using the keyword "pippo" I get this first…

Niugeo
- 1
-1
votes
1 answer
Facebook error parsing input URL error 502 Bad Gateway
Any time when someone shares my website link onto facebook or twitter they get 502 Bad Gate way. I check the nginx error log to see whats going on and I got this.
error1615#0: *2375 connect() failed (111: Connection refused) while connecting to…

Pablo Lopez
- 111
- 1
-1
votes
1 answer
IIS (or .htaccess) URL Rewrite not working correctly - need to capture number argument as query string
I'm trying to have:
http://sub.domain.org/123456 become http://sub.domain.org/index.php?q=123456
I have tried many ways, and one way sort of worked, but then all subdirectories (including images) don't work. I want it to look for numbers only, and…

Amit Mehta
- 1
- 1
-1
votes
1 answer
Wireless router URL redirection
I'm trying to "filter" explicit URLs (+18/21) from network traffic and redirect to another website. I have physical access to router inside my home, computer and router local web-access, which let's say does not support Captive portal and is not…

bobisbackwardbob
- 1
- 1
- 2
-1
votes
1 answer
Apache MOD_REWRITE for subdomain
Summary
I have 2 servers, 1 Production & 1 Development
Problem
I want to keep the servers URLS the same in the code. The production server will be blah.com but I want the development server to be dev.blah.com. The hard coded urls on both the…

Robert
- 207
- 1
- 6
-1
votes
3 answers
RewriteRule doesnt work
I want to convert this url
http://ts.thebenamorgroup.com/g2g/category.php?cate=mens
to:
http://ts.thebenamorgroup.com/g2g/category/cate/mens/
I have this rule but it doesnt work:
Options +FollowSymLinks
RewriteEngine on
RewriteRule…

Emilio Gort
- 107
- 4
-1
votes
1 answer
Redirect a dynamic URL with Apache
I need to make a Apache rule to redirect an specific URL
http://www.domain.cl/section.do?one.second=8 --> http://www.newdomain.cl/
I was reading about using mod rewrite but all the examples i found use regular expressions and i don't want to other…

Juan
- 1
-1
votes
1 answer
URL redirection
I have set up a ubuntu server with apche 2 installed, I already have a windows server 2003 installed with Zywall firewall installed, I successfully started Apache2 in Ubuntu server and it is running, Now I need help in URL redirection, here is what…
-1
votes
1 answer
Rackspace: Temporary streaming URL to a file in the cloud files
The question is simple: How to create a temporary streaming URL to a files in the Rackspace cloud files. URL is needed streaming.

Sergey Kozlov
- 101
- 1