See what URLs are called (that lead to an error)

So I recently updated our homepage to kirby. I just installed the Site Stats Plugin and saw that very many requests result into an error page.

Is there a chance to see what URLs are called ?

If you have a server access log, it should be in there.

thank you - I’m going through the logs right now - pretty annoying :cold_sweat:

I found this solution for the log-file access_log (apache)

grep "HTTP/1.1\" 404" access_log | awk '{print $7 } ' | sort | uniq -c | sort -n