0

我正在使用 laravel 4.2 开发电子商务,我想要这个:

当用户在移动设备中访问“ http://www.mystore.com/cart ”之类的链接时,重定向到“ http://www.mystore.com/m/cart ”,并且对于该站点的所有页面都相同.

我正在尝试使用 htdocs 进行此操作,但无法正常工作。

我怎么能做这个?

4

1 回答 1

-1

为什么不使用 Javascript 来做到这一点?

var url = window.location.wref; //get current URL
var str = url.substr(url.lastIndexOf('/') + 1); //extract the last segment
var newUrl = url.replace(str,'/m/'+str); //replace last segment with '/m/' + last segment
console.log(newUrl); 
于 2017-11-22T15:45:33.020 回答