.htacces
URLの書き換えに問題があります。
というフォルダーがdir
あり、その中に3つのファイルがあります
.htaccess
空です、i.php
空でもありますが、index.php
私にはあります
$sql = mysql_query("SELECT * FROM clients ORDER By id DESC LIMIT 10");
while($row = mysql_fetch_array($sql)){
$url = "i/$row[id]/".preg_replace('/[^a-zA-Z0-9-_]/', '-', $row['company']);
echo "<a href='".$url ."'>".$row['company'].'<br/ ></a>';
}
ホバーすると、次echo
のようなリンクが出力されます
localhost/dir/i/101/today-in-news
localhost // is localhost obviously
dir // is a folder where I keep index.php and i.php files
i // is i.php
101 // is the id of the news
today-in-news // is the title of the news
そのため、クリックすると目的の場所に移動しますが、ID を削除する必要があります。この場合、リンクをクリックしたときに101
のみリンクを表示する必要があります。localhost/dir/i/today-in-news
私はできる限りのことを試みましたが、結果はありませんでした。