当访问扩展名为.html的文件时,进行伪装和设置,使其实际运行的是.php文件
当以扩展名为 .html 的方式访问时,设置使之执行 .php 文件。
RewriteEngine On
RewriteBase /test
RewriteCond %{REQUEST_FILENAME} ^(.*)\.(html) [NC]
RewriteCond %1.php -f [NC]
RewriteRule ^(.*).html $1.php [L]
当以扩展名为 .html 的方式访问时,设置使之执行 .php 文件。
RewriteEngine On
RewriteBase /test
RewriteCond %{REQUEST_FILENAME} ^(.*)\.(html) [NC]
RewriteCond %1.php -f [NC]
RewriteRule ^(.*).html $1.php [L]