且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

htaccess重写URL php参数

更新时间:2023-02-24 09:47:51

只需在您的.htaccess文件中使用它:

Just use this in your .htaccess file:

RewriteEngine On
RewriteRule ^meeting/([^/]*)$ /meeting.php?ref=$1 [L]

它将为您提供以下网址:http://www.example.com/meeting/y0fpjXrrGP

It will leave you with the URL: http://www.example.com/meeting/y0fpjXrrGP

请确保在测试时清除缓存.

Make sure you clear your cache when testing this.