-
How would i make it so YOURLS can understand links like I know it'd be %20 but as far as i can see creating a short url link just deletes the space and it wont recognize it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
This is plugin territory and should be quite simple. A charset modification example for hyphens ( Forward slash and full stop have third party solutions listed in the Awesome List (though both are marked as archived, I've looked at the code and there's no apparent reason why they wouldn't still work). |
Beta Was this translation helpful? Give feedback.
i just decided to go with another route. A dirty little edit from the plugin yourls-case-insensitive i just made it strip %20 from the URL it receives (
$keyword = str_replace('%20', '', $keyword)
)