我想在php中使用GET方法。它会像" www.example.com/test.php?id = 1"。但是,如何避免使用此结构并使用www.example.com/test/id或任何其他结构?
下面是我的.htaccess文件。任何人都可以告诉我应该添加什么?我怎样才能在PHP中使用该值?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>