如何在PHP中缩短URL?

时间:2016-07-11 08:23:22

标签: php .htaccess url

在我的index.php中,我有一个属性列表。当我点击它时,它会将我引导至property_detail.php,但是有关URL的额外详细信息会使其变得非常冗长和不整洁。如何缩短它?

enter image description here

1 个答案:

答案 0 :(得分:0)

在根文件夹中的.htaccess中设置重写URL规则。

RewriteEngine On
RewriteCond $1 !^(index\.php|assets|images|js|css|upload|favicon.png)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]