我知道有很多关于这方面的问题,但我无法使其发挥作用。 我有这样的网址
http://www.testo.com/admin/template/locations.php?id_location=12
我想让它更友好。我并不完全了解这些网址的SEO建议。我想像是
http://www.testo.com/admin/template/locations.php/12
要获取$ _GET变量我需要做什么?
谢谢你, 亚历
答案 0 :(得分:1)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
RewriteEngine On
RewriteBase /
RewriteRule ^(admin/template/locations\.php)/(\d+)/?$ $1?id_location=$2 [L,QSA,NC]