<@U04UQ68083H> why do i get "Requested url does no...
# ory-copilot
s
@chilly-king-10285 why do i get "Requested url does not match any rules" when trying to open my paswordless login page
c
A message from kapa.ai
The "Requested url does not match any rules" error occurs when the requested URL doesn't match any of the access rules defined in your Ory configuration. To resolve this issue, you need to review your access rules and ensure that the URL you're trying to access is properly defined in the rules. Here's an example of an access rule from the [Ory documentation](https://www.ory.sh/docs/oathkeeper/configure-deploy):
Copy code
json {   "id": "allow-anonymous-with-header-mutator",   "version": "<version-you-want>",   "upstream": {     "url": "<https://httpbin.org/anything/header>"   },   "match": {     "url": "http://<127.0.0.1|localhost>:4455/anything/header",     "methods": [       "GET"     ]   },   "authenticators": [     {       "handler": "anonymous"     }   ],   "authorizer": {     "handler": "allow"   },   "mutators": [     {       "handler": "header",       "config": {         "headers": {           "X-User": "{{ print .Subject }}"         }       }     }   ] }
Make sure your access rules are correctly configured to match the URL you're trying to access. If the issue persists, you may want to check the logs for more information, as suggested in the [Ory FAQ](https://www.ory.sh/docs/hydra/faq).
p
Hi @strong-carpet-65152 Could you be more specific? Which URL path are you navigating to?
s
Hey. I was trying to navigate to the log in page, but didn't know I had to append /ui to it to play around with it. 🙂
p
There is a "launch" button on the Account Experience section