新規リンク形式:http://example.com/videos?name=video01
コールコントローラまたはhttp://example.com/videos/index.php
の上部に向かっこの機能:
function redirect()
{
if (!empty($_GET['name'])) {
// sanitize & validate $_GET['name']
// Remove anything which isn't a word, whitespace, number
// or any of the following caracters -_~,;[]().
// If you don't need to handle multi-byte characters
// you can use preg_replace rather than mb_ereg_replace
$file = mb_ereg_replace("([^\w\s\d\-_~,;\[\]\(\).])", '', $_GET['name']);
// Remove any runs of periods
$file = mb_ereg_replace("([\.]{2,})", '', $file);
$valid = file_exists('pathToFiles/' . $file);
if ($valid) {
$url = '/videos#' . $file;
} else {
$url = '/your404page.php';
}
header("Location: $url");
}
}
サニタイズは、この非常にランクさ答えからの抜粋:https://stackoverflow.com/a/2021729/1296209
ところで、私は少ししてみました.lyのAPIは動作しませんでした。 – kinduff