如何使用php中的标题打开页面?

时间:2016-07-17 20:04:02

标签: php

我正在开发一个房地产网站。我想在xyz.com/propert-details.php上显示每个属性的详细信息。

现在我正在使用每个属性示例链接xyz.com/property-details?id=3的ID显示数据。

但是,我想在url中使用从属性标题生成的slug。我已将财产权转换为slug。

我想要一个像xyz.com/property-tile这样的网址。

正确的方向是什么?我会自己做实施。

1 个答案:

答案 0 :(得分:2)

要美化你需要编辑的网址.htaccess文件

RewriteEngine On
RewriteRule ^(.*) index.php?id=$1 [QSA,NC]

据我所知,你想使用url中的id获取property-title。 你需要做这样的事情:

if (isset($_GET['id']))
{
// check for the id in the database and return the name 
// redirect user using header("Location:xyz.com/".urlencode($row['name']));
}