在我的 php 网站中,我需要以特定方式显示我的骨灰盒
我需要隐藏查询字符串参数,只想在 URL 中显示值,即
mydomain.com/city.php?place='usa'&id=2
我需要显示
my domain.com/city-2/usa
可能吗?
请帮我。我的情况很严重。
提前致谢
在我的 php 网站中,我需要以特定方式显示我的骨灰盒
我需要隐藏查询字符串参数,只想在 URL 中显示值,即
mydomain.com/city.php?place='usa'&id=2
我需要显示
my domain.com/city-2/usa
可能吗?
请帮我。我的情况很严重。
提前致谢
对的,这是可能的:
RewriteEngine On
RewriteBase /
RewriteRule ^city-(\d+)/(.*) city.php?place=$2&id=$1
您需要将其放入.htaccess
您网站的 Web 根目录中。要使其正常工作,您需要.htaccess
启用解析并启用mod_rewrite
apache 模块(假设您将 apache 作为 Web 服务器)。
更多官方文档