Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有这样的网址:
domain.com/profile.php?id=1&lang=en
我可以使用 htaccess 获得这样的网址吗?
domain.com/1/en
谢谢
这就是我在 .htaccess 中的做法
RewriteEngine On RewriteRule ^/1/en$ /profile.php?id=1&lang=en