I'm trying to make an error document show what page you were trying to go to, but am having issues as it does not escape characters by default (as ecpected)
Most solutions I've seen are to use RewriteRule, but I really do not want to do that, as I want the same document to handle many errors. My current solution is:
ErrorDocument 404 http://%{HTTP_HOST}/Error/Error?c=404&p=%{REQUEST_URI}
But that would break apart incases such as "example.com/NotExist&=&^72*(238" Is there any way to do this?