我有一个项目,用户可以导航到提供的shortURL,这会将每个人重定向到具有不同商家名称的类似外观。
目前我有一个 MySQL 数据库,如下所示:
tbl_Codes
- shortURL (string of 5 alphanumeric characters)
- businessID (ID of business which matches the ID in the table below)
tbl_Business
- businessID
- businessName
- other fields....
导航到 example.com/12345 的人会看到一个表单,其中包含与businessID匹配的商家名称,以及导航到 example.com/abcde 看到相同的表格,但名称不同。
something like this会是最好的方法吗?如果没有,怎么样?
链接脚本使用 PHP regex 获取shortURL,匹配数据库中的字符串,然后执行 301重定向。如果不匹配,它会重定向到404页面(虽然我可能不会执行404位)。
提前致谢。
以下是您不想点击链接的代码。它来自一个教程:
<?php
$expectedURL = trim($_SERVER['URL']);
$split = preg_split("{:80\/}",$expectedURL);
$shortURL = $split[1];
// security: strip all but alphanumerics & dashes
$shortURL = preg_replace("/[^a-z0-9-]+/i", "", $shortURL);
// Check this string to see if it matches a short URL in our database.
$isShortURL = false;
$result = getLongURL($shortURL);
if ($result) { $isShortURL = true; }
$longURL = $result['longURL'];
// Finally, we check to see if our $isShortURL flag is set.
// If a matching short URL was found, we’ll redirect to it.
// If not, we’ll display our standard 404.
if ($isShortURL)
{
redirectTo($longURL, $shortURL);
} else {
show404(); // no shortURL found, display standard 404 page
}
//The primary function:
// Get the long URL associated with the passed short URL, if it exists.
function getLongURL($s)
{
// define these variables for your system
$host = ""; $user = ""; $pass = ""; $db = "";
$mysqli = new mysqli($host, $user, $pass, $db);
// you may just want to fall thru to 404 here if connection error
if (mysqli_connect_errno()) { die("Unable to connect !"); }
$query = "SELECT * FROM urls WHERE shorturl = '$s';";
if ($result = $mysqli->query($query)) {
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
return($row);
}
} else {
return false;
}
} else {
return false;
}
$mysqli->close();
}
//Perform the URL redirection.
function redirectTo($longURL)
{
// change this to your domain
header("Referer: http://www.your-domain-here.com");
// use a 301 redirect to your destination
header("Location: $longURL", TRUE, 301);
exit;
}
//Finally, display your standard 404 page here.
function show404()
{
// display/include your standard 404 page here
echo "404 Page Not Found.";
exit;
}
?>
答案 0 :(得分:3)
你发布的那个链接......好吧....等等。但是有更好的方法可以做到这一点。但是,在您的情况下,我认为这不是您所需要的?
不深入查看代码,请勿使用正则表达式。使用您的htaccess文件并执行mod_rewrite将“short url”作为查询参数传递。使用$ _GET超级全局通过PHP脚本访问它。看起来你甚至不需要进行重定向?只需使用业务ID提取必要的数据。
此外,在您继续之前,请尽可能开始使用PDO,并为其构建数据库类(包装器)。从长远来看,更多的OOP方法将为您提供更好的服务。
答案 1 :(得分:1)
也许我经常发布这个:行
$query = "SELECT * FROM urls WHERE shorturl = '$s';";
看起来对我来说是完美的Little Bobby Tables候选人
(也称为SQL Injection)