如何在 GoDaddy Linux 主机上使用 .htaccess 文件更改 PHP 文件扩展名?

发布于 2024-12-11 19:06:56 字数 361 浏览 0 评论 0原文

我使用以下 .htaccess 规则将 PHP 文件扩展名修改为 HTML:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.html

我将 .htaccess 文件以及两个 PHP 文件(page1.php 和 page2.php)放置在根目录中。

当我尝试使用 html 扩展名(page1.html 或 page2.html)访问 PHP 文件时,我收到 404 错误消息,指出找不到页面。

你能引导我走向正确的方向吗?

I am using the following .htaccess rules to modify the PHP file extensions to HTML:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.html

I placed the .htaccess file as well as two PHP files (page1.php and page2.php) in the root.

When I try to access the PHP files using the html extension instead (page1.html or page2.html) I get the 404 error message stating the page cannot be found.

Could you please guide me to the right direction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滥情哥ㄟ 2024-12-18 19:06:57

试试这个:

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

当您访问 page1.html 时,系统将查找:page1.php

try this:

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

when you will access page1.html the system will look for: page1.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文