simplePHPRouter
simplePHPRouter copied to clipboard
URI with symbols
I am making a Request Feedback system, and I have a uri like this:
https://requests.steadfastinnovations.com/dev/idea/get-requesttrak-up!
It's acting as that isn't found. I haven't messed with Regex. How would I allow a symbol like an exclamation point in the uri?
Never mind, I've had to add the regex code. Route::add('/idea/([a-zA-Z0-9-!?]*)', function($slug) { require ROOTDIR . '/views/topic.php'; }, ['get','post']);