我编写了一些 PHP 来检测用户是使用移动设备还是计算机访问我的博客文章。
基本上,如果用户使用手机访问我的博客文章,我需要一个动态编辑 URL 的脚本。
例如,我的博客文章 URL 是这样的:
http://www.example.com/blog/blog-post-1/
http://www.example.com/blog/welcome-to-my-blog/
http://www.example.com/blog/另一个博客帖子/
用户应该被动态重定向到:
http://www.example.com/m/blog/blog-post-1/
http://www.example.com/m/blog/welcome-to-my-blog/
http://www.example。 com/m/blog/another-blog-post/
我也有在 PHP 中工作的设备检测,所以我只需要在 PHP 条件中插入脚本。
有任何想法吗?