This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

URl Word Flitering

Having issues with students and google sites. We have some teachers using the sites for classes with students, but we also have a lot of traffic for unneeded sites that students are creating outside of classwork. Is there a way to key off a word within the url? For example I would like to be able to block any site that has the word unblock at the end (sites.google.com/site/unblockmysite) while still allowing sites.google.com. I have been trying manually add to the re-categorization list, but it is a never ending battle.


This thread was automatically locked due to age.
Parents
  • That RegEx will work, but it is actually doing more than it needs to.  RegEx naturally adds wildcards to the front and back.  Also putting . inside the [ ] automatically means any character, making the rest of the things in [ ] duplicates.
    For this specific purpose (the word unblock anywhere in the hostname, path, or parameters) you can just do:
    unblock
Reply
  • That RegEx will work, but it is actually doing more than it needs to.  RegEx naturally adds wildcards to the front and back.  Also putting . inside the [ ] automatically means any character, making the rest of the things in [ ] duplicates.
    For this specific purpose (the word unblock anywhere in the hostname, path, or parameters) you can just do:
    unblock
Children
No Data