【发布时间】:2014-02-21 22:24:17
【问题描述】:
我需要更改我的index.php文件加载路径所以我放置如下,
httpdocs
new_path
index.php
我更新了我的 .htaccess 如下,
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ new_path/index.php [NC,L]
但是当我访问http://www.mysite.com 时,它说浏览器找不到该页面。谁能帮我解决这个问题?
谢谢
【问题讨论】:
标签: php .htaccess redirect rewrite