【发布时间】:2009-04-30 12:14:18
【问题描述】:
为了将我的动态 URL 即 www.3idiots.co.in/index.php 转换为静态 URL 即 www.3idiots.co.in/index.html,我编辑了我的 .htccess 文件并将以下代码放入它:
RewriteEngine On
RewriteRule ^index.php$ /index.html [R]
当我将此文件上传到根目录并尝试打开页面时,出现错误
404 页面未找到错误,www.3idiots.co.in/index.html 未找到。
【问题讨论】:
-
好吧,我去了3idiots.co.in/index.html,果然,该页面不存在。你检查你的文件权限了吗?也许 HTTPD 用户看不到它。
-
www.3idiots.co.in/index.php 转到此页面...我想将其转换为 www.3idiots.co.in/index.html
标签: php url mod-rewrite url-rewriting