|
网站在根目录下的manage文件夹下,
.htaccess文件是这么写的
RewriteEngine on
RewriteCond $1 !^(index\.php|images||css|js|sitemap\.xml|robots\.txt)
RewriteRule ^(.*)$ /manage/index.php/$1 [L]
这么访问首页能正常重定向到首页
http://127.0.0.1/manage/
但我访问其它页面访问不到
其它页面是这么访问的
http://127.0.0.1/manage/manage_control/manage_index/
提示:
Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
但这么访问可以
http://127.0.0.1/manage/index.php/manage_control/manage_index/
各位帮我看看怎么回事? |
|