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.
我需要用 .htaccess 重写一个 URL。
(Actual url) Before: yyy.com/folder/index.php?lang=en (Their url) After: yyy.com/folder/en/index.php Before: yyy.com/folder/submit.php?lang=da After: yyy.com/folder/da/submit.php
我该怎么做呢?
尝试将此添加到文档根目录中的 htaccess 文件中:
RewriteEngine On RewriteRule ^/?folder/([a-z]{2})/index\.php$ /folder/index.php?lang=$1 [L,QSA]