如何在 GoDaddy Linux 主机上使用 .htaccess 文件更改 PHP 文件扩展名?
我使用以下 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
当您访问 page1.html 时,系统将查找:page1.php
try this:
when you will access page1.html the system will look for: page1.php