Messages - BGM [ switch to compact view ]

Pages: prev1 ... 93 94 95 96 97 [98] 99 100 101 102 103 ... 112next
486
Are you using DHCP?  Each laptop has a different MAC address for it's wired card and for its wireless card.  You have to enter both addresses in your DHCP configuration.

487
Living Room / Re: URL Rewrite Problem
« on: June 21, 2014, 11:22 AM »
Ah, the regex did, indeed help - thank you very much.  I tried with some escapes but was having troubles.
Now it rewrites to the site correctly, whether being http or https.


However, I still have a problem.
If I type https://sub2.domain/page_from_sub1
it rewrites to
https://sub1.domain/page_from_sub1

It is supposed to get my my error page because page_from_sub1 does not exist on sub2.
How do I fix that?

The regex is correct. http://sub2.domain never matches the regex.  So why is it getting rewritten?

488
Living Room / Re: URL Rewrite Problem
« on: June 21, 2014, 10:10 AM »
Thanks for your help. 

However, this isn't a coding issue - I'm not writing this into the aspx code.  The System is IIS7, and I am using the webserver's GUI to rewrite the URL for incoming http requests.

489
Living Room / Re: URL Rewrite Problem
« on: June 21, 2014, 08:53 AM »
@Renegade,  I have a url-rewrite module already installed and working in my IIS.  I can't figure out how to get the settings and regex right.

490
Living Room / URL Rewrite Problem
« on: June 19, 2014, 09:07 AM »
Hello, folks.

I need some help with a problem on my webserver involving url-rewrite and redirection in my IIS7.  I made a post at ServerFault, but noone is hardly even viewing it.

Here is the contents of my post there:

We have our own domain and have several subdomains. One of the sites needs to be accessed only via SSL, but people are allowed to type http and still arrive there. The URL-Rewrite forces the http into https.

So my two subdomains are: sub1.domain.org and sub2.domain.org.

Thus, if I type

Code: Text [Select]
  1. http://sub1.domain.org/page_on_domain1

it is rewritten to

Code: Text [Select]
  1. https://sub1.domain.org/page_on_domain1

-which is correct. But if I do this (which is not possible - page_on_domain1 does not exist on sub2.domain.org:

Code: Text [Select]
  1. https://sub2.domain.org/page_on_domain1

My url-rewrite rule seems to work properly, but I want that last address to give me an error page instead, since the page doesn't exist on that subdomain.

I am testing this in Firefox on Windows 7 x64 Pro.

My url-rewrite rule is as follows (I am doing it through the IIS7 GUI):

Code: Text [Select]
  1. Requested URL:  Matches the Pattern:  (*)  Using Regular Expressions (ignore case)
  2. Conditions:  Match All:  Input:  {HTTPS}  Matches the Pattern:  ^Off$
  3. Redirect URL:  https://sub1.domain.org/{REQUEST_URI}

Now, I've tried changing the Requested URL Pattern to: .*sub1.domain.org/.* but the regex tester in IIS7 says it doesn't match against https://sub1.domain.org - I don't understand that.

How can I keep the rewrite of http to https for sub1.domain.org, but not have any effect at all on sub2.domain.org ??

I've been stuck on this for a long time.  This is my first ever post to the Living Room.
Thank you!

Pages: prev1 ... 93 94 95 96 97 [98] 99 100 101 102 103 ... 112next
Go to full version