我已经(在PHP
和PDO
中)编写了一个与GET
方法(index.php?id=1)
配合使用的链接缩小器,但我想这样:domain.com/[ID]
答案 0 :(得分:0)
在主文件夹中创建.htaccess文件,并在文件中写下以下内容
RewriteEngine On
RewriteRule ^([a-zA-Z0-9-/]+)$ index.php?id=$1 [L]
结果
domain.com/1 = domain.com/index.php?id=1
domain.com/home = domain.com/index.php?id=home
domain.com/ID = domain.com/index.php?id=ID