Single Pages dash in url
Permalink
I have a single page within the controller I allow certain urls, but having trouble allowing dashes in those url's.
The relevant part of the controller is as follows
Is it possible to accept dashes in the single page sub view url?
Thanks
Sean
Example URL's
/custom/example-url <-- Does not work
/custom/example_url <-- Works
The relevant part of the controller is as follows
public function view() { //View Stuff } public function example_url() { //Sub view does not work if the URL has dashes in? }
Is it possible to accept dashes in the single page sub view url?
Thanks
Sean
If it's that important you would need to handle this with .htaccess rewrite rules, or create another single page at that URL (or a route in 5.7+)