0

只是想知道通过 .htaccess 重命名 .php 文件 .html 文件是否会有任何问题?我们现有的网站是 html,我想用动态 php 页面更新页面,但是人们有链接保存到现有的 html 网站。如果这不可能,是我创建带有 iframe 的 html 页面以包装 php 页面的唯一方法吗?

谢谢 :)

4

2 回答 2

3

它不是将 php 文件重命名为 html,而只是将文件使用 html 扩展名重定向到 php 文件。

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f        # don't apply to the existing html files
RewriteRule ^([^.]+)\.html$ /$1\.php [QSA,L]  # QSA means combine query string.
于 2012-09-12T10:07:25.523 回答
2

我相信

RewriteEngine on
RewriteRule ^(.*)\.html $1\.php

应该满足您的需求(未经测试)

于 2012-09-12T10:00:46.647 回答