php - 如何生成动态页的短链接,不跳转
大家讲道理
大家讲道理 2017-04-11 09:17:52
0
3
628

短连接格式:
http://www.abc.com/Af3aM3er
后面为8位字符串
浏览此链接,不能进行网址跳转。
浏览的实际地址为一个php页面
http://www.abc.com/index.php?...

这个如何实现了??

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(3)
P粉929475170

Shuba Short Link—The simplest short link tool with statistical reports. Tool introduction: Zuuba Short Link is an online platform for quickly shortening URLs. It is a data analysis tool with smooth, high-speed, and visual Internet access across the country. It is mainly used in text messages. Marketing, ***Q marketing, e-commerce operations, community operations, *** marketing, etc. Users can analyze access data online in real time, eliminating cumbersome traditional manual code statistics.

左手右手慢动作

可以使用nginx,做重写
rewrite ^/(.*)$ index.php?param=$1 last;

黄舟

如果就只是这个的话可以用tp的路由功能配合上url重写:

return array(
    "URL_ROUTER_ON" => true,
    "URL_ROUTE_RULES" => array(
        '/^([a-zA-Z0-9]{8})$/'  => 'Module/Controller/action?r=:1',//规则放到其它规则之后
    ),
);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template