过滤字符串以删除不允许的字符以在 CodeIgniter 中组成 URL
我正在尝试为我的作品集上的博客创建 URL 友好的链接。 所以我想获得类似 site/journal/post/{title} 的链接
显然 Journal 是我的控制器,但假设我的标题是“mysite.com 上线!”我想要一个有效的网址,例如 site/journal/post/mysitecom-goes-live,其中所有不允许的字符都被删除。
我将如何改造“mysite.com 上线!”根据 $config['permissed_uri_chars'] 中的字符在 CodeIgniter 中转换为“site/journal/post/mysitecom-goes-live”
I'm trying to make URL-friendly links for the blog on my portfolio.
So I would like to obtain links something like site/journal/post/{title}
Obviously Journal is my controller, but let's say my title would be 'mysite.com goes live!' I would like to have a valid url like site/journal/post/mysitecom-goes-live where all disallowed characters are removed.
How would I transform 'mysite.com goes live!' to 'site/journal/post/mysitecom-goes-live' in CodeIgniter based on the characters in $config['permitted_uri_chars']
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 url 帮助器
生成 url 友好的链接。
将此值存储在博客表 (url_title/url_slug) 的字段中。
创建一个函数:
您的 blog_model 有一个 get_post 方法,该方法使用 CI 的
$this->db->where('url_title', $post);
希望这是有意义的。
然后,当您访问该页面时:
site.com/journal/view/mysite-goes-live
该函数将拾取“mysite-goes-live”并将其传递给 view() 函数,依次在数据库中查找适当的博客条目。
use the url helper
to generate url-friendly links.
Store this value in a field in your blog table (url_title/url_slug) whatever.
make a function:
your blog_model has a method get_post that uses CI's
$this->db->where('url_title', $post);
hope that makes sense.
then when you access the page:
site.com/journal/view/mysite-goes-live
the function will pick up "mysite-goes-live" and pass it to the view() function, which in turn looks up the appropriate blog entry in the database.