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 中从 .php 到 .html 的 mod_rewrite “ONE 文件”的语法是什么?我有所有文件的语法,但我如何为一个文件做到这一点?谢谢
在文档根目录的 htaccess 中:
RewriteEngine on RewriteRule ^file.php$ /file.html [L]
这将在内部将 /file.php 映射到 /file.html