htaccess 重定向友好获取文件

htaccess redirect friendly get file

我知道有很多关于此的问题,但我无法让它发挥作用。 我有一个 URL 这样的

http://www.testo.com/admin/template/locations.php?id_location=12

我想让它更友好。我不完全了解这些网址的 SEO 推荐。我在想

http://www.testo.com/admin/template/locations.php/12

要获取 $_GET 变量,我需要做什么?

谢谢, 亚历克斯

您可以在 DOCUMENT_ROOT/.htaccess 文件中使用此代码:

RewriteEngine On
RewriteBase /

RewriteRule ^(admin/template/locations\.php)/(\d+)/?$ ?id_location= [L,QSA,NC]