Questions tagged [url]

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.

519 questions
1
vote
3 answers

If you are migrating to HTTPS, will third party HTTP links to your images break?

I write articles for multiple online blogs, and I host the images embedded in these articles on my personal website. I would like to implement SSL on my website, because one of the websites hosting these articles switched to HTTPS links and the…
zylixia
  • 13
  • 4
1
vote
1 answer

iptables log url query string

I log and drop packets send to specific IP/domain name. I would like to be able to log url parameters for these dropped packet. This is an example url: http://somedomain.com/test.php?param1=test1¶m2=test2 This is what i'm doing e.g: iptables -A…
rostM
  • 11
  • 2
1
vote
2 answers

Simplest way to redirect from a page on one domain's URL to another domain?

Background: I redirect my web site's email to a Google Apps account, since Google was giving me much higher uptime and much better spam filtering. But it's a pain to log in from a new PC. You have to go to http://www.google.com/a, find and click…
Fred Hamilton
  • 187
  • 1
  • 6
1
vote
3 answers

IPTABLES - how to forward from single IP to a url

I need to forward from a single IP to a URL (due the destination server uses a range of IP to interchange among them) using iptables. It is possible to do that? If that so I was considering using this: iptables -t nat -A PREROUTING -p tcp --dport…
czumelzu
  • 11
  • 2
1
vote
2 answers

Dockerized jira 7.3.5 with nginx reverse proxy base url issue

I run into a minor issue when trying to configure Jira 7.3.5 using a nginx reverse proxy on my local network. I use the cptactionhank jira docker image together with the jwilder nginx-proxy docker image. Everything seems to run fine, but since my…
mojoritty
  • 21
  • 3
1
vote
0 answers

Change property using URL rewrite - IIS8 - Windows Server 2012

I have a webserver with two domains and both with ssl, I saw a video about how to configure this (SSL) and everything worked well but now my problem is that there is a part about URL rewrite WHERE if I write something like example.com it redirects…
Fixer
  • 11
  • 1
1
vote
2 answers

How to make example.com/about show example.com/about.html? (Apache2)

What is the best option to go when trying to have example.com/about show example.com/about.html, and without changing the url to /about.html. Right now i'm trying to the following code it just returns an 404 Error. RewriteRule ^/about$…
dotconnor
  • 161
  • 1
  • 6
1
vote
1 answer

Setting up nginx redirect map: how to handle spaces

How can you handle spaces in the original url in a redirect map? The map I have set up seems to be working properly for other redirects. However, for urls with spaces, I tried: ‘/banner ads.htm’ /links/link-humor-times/; …but that’s not working.…
1
vote
2 answers

Nginx URL proxy to server

I'm trying to redirect all traffic from www.example.com and example.com to old-www.website.com proxy all traffic from example.com/forum (and www) to forum server @ 192.168.100.100 I've tried the following config but it keeps returning me to my…
f.farah
  • 13
  • 2
1
vote
0 answers

Apache LimitRequestLine and log files

It's not particularly clear to me where apache should log what. As an example I was passing a very long url to a virtualhost to see if Apache could avoid the overflow problem. The directive handling the max number of bytes that will be allowed on…
Leonardo
  • 139
  • 4
1
vote
1 answer

Configure Squid proxy server or pfsense to achieve WLAN URL logging

Using Squid proxy server and pfsense are out of my comfort zone, I have managed to install Squid on an Ubuntu server and give it a static IP and connect to it via LAN after setting HTTP_access to allow all. My ultimate goal is just to "simply" log…
user381533
1
vote
2 answers

how to monitor web app availability with splunk?

I've recently downloaded and installed a Splunk 4.0.4 Server Enterprise trial (running on Windows Server 2008 if that matters), and now I want to set it up to monitor a few web pages in addition to the logs I'm already watching with Splunk. I…
Justin Grant
  • 259
  • 2
  • 4
  • 12
1
vote
2 answers

Redirect URL with IIS 8.5

I would like to redirect/forward a URL on my testdomain. The URL is for example: http://www.mydomaintest.com/feed and I would need that to forward to http://www.mydomaintest.com/feed/stories. I have tried the GUI URL Rewrite in the IIS manager but…
DidierTech
  • 53
  • 1
  • 2
  • 6
1
vote
1 answer

Nginx Url Rewriting: Remove folder from the url

Im trying to rewrite a url like below: https://example.com/products/xperia-z5/ to--> https://example.com/xperia-z5/ But i want in the same time the url https://example.com/products/ to be accessible, without any modifications since its a product…
Skeptic
  • 191
  • 1
  • 1
  • 6
1
vote
1 answer

Avoid that subdomain gets redirected because of WWW canonicalization

I added this URL cnonicalization to my .htaccess file: RewriteEngine on RewriteCond %{HTTP_HOST} !^www.example.com [NC] RewriteRule ^/?(.*)$ http://www.example.com/$1 [L,R=301] But now my subdomain shop.example.com is redirecting to…
Jarby A
  • 11
  • 1