没有index.php的PHP GET方法?id = XXX

时间:2016-03-29 09:30:05

标签: php html apache

我已经(在PHPPDO中)编写了一个与GET方法(index.php?id=1)配合使用的链接缩小器,但我想这样:domain.com/[ID]

1 个答案:

答案 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