cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
574
Views
0
Helpful
5
Replies

Allow specific pages?

ashaw216
Level 1
Level 1

   How would we allow specific pages / sub-pages of a site?  For example, allow access to a casino's hotel pages without allowing access to the gambling parts of the site?

2 Accepted Solutions

Accepted Solutions

Chris Illsley
Level 3
Level 3

Hi,

You need to create a custom URL category then use a regular expression in the advanced section, something along the lines of:

casinoo\.com/hotel

Hope this helps,

Thanks

Chris

View solution in original post

I think your missing a dot:

www\.motorcitycasino\.com/CSS/.*\.css

Thanks

Chris

View solution in original post

5 Replies 5

Chris Illsley
Level 3
Level 3

Hi,

You need to create a custom URL category then use a regular expression in the advanced section, something along the lines of:

casinoo\.com/hotel

Hope this helps,

Thanks

Chris

Thanks... perhaps I am doing this wrong, but this doesn't appear to function as expected. For example,

www\.motorcitycasino\.com/CSS/*\.css

is not allowing

www.motorcitycasino.com/CSS/MCCH.css

or

www.motorcitycasino.com/CSS/responsive.css

I think your missing a dot:

www\.motorcitycasino\.com/CSS/.*\.css

Thanks

Chris

Thanks Chris, that worked.  Just for my own edification, if I'm escaping the dot with \.css , why do I need a dot in front of the wildcard as well?

The dot in front of the wildcard specifies the regex to match against the wildcard.

Thanks

Chris