0

我正在使用 CPANEL,有选项 Apache 处理程序。

如何使 .php 扩展名像 .html 一样加载?

例如,

example.com/index.php

应该

example.com/index.html
4

1 回答 1

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]
于 2013-04-24T13:03:15.267 回答