我正在使用CPANEL,有选项Apache处理程序。
如何将.php扩展名加载为.html?
例如,
example.com/index.php
应该是
example.com/index.html
答案 0 :(得分:0)
使用.htaccess文件将.php扩展名转换为子目录中的.html扩展名(使用.htaccess文件将.php扩展名转换为特定文件夹中所有文件的.html扩展名)
RewriteEngine on
RewriteBase /subdirectory name
Example
RewriteEngine on
RewriteBase /gallery
RewriteCond %{THE_REQUEST} (.).php
RewriteRule ^(.).php $1.html [R=301,L]
RewriteCond %{THE_REQUEST} (.).html
RewriteRule ^(.).html $1.php [L]