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.
我使用此代码 {$smarty.server.PHP_SELF} 订购当前页面,但页面带有 .php 我希望它带有 .html 有没有办法使用 php 或任何方式来做到这一点?
我想要的另一件事是将任何用户使用 .php 重定向到同一页面上的 .html?
你可以使用htaccess它
htaccess
RewriteEngine on RewriteRule ^(.*)\.html$ $1.php [nc]