我正在使用 htaccess 进行动态 url 重写。我想将 test.php 显示为 test.html
htaccess 代码是
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\.html$ $1.php [nc]
运行 test.php 后,浏览器在地址栏显示 test.php。但是如果我将 test.php 更改为 test.html 页面会给出相同的内容。我的 apache 配置文件很好。我该如何解决这个问题?谢谢帮助我..