白狐书生 发表于 2011-10-9 20:37:34

项目怎么设置才能访问

有一个项目,我放在了下面的目录下
E:\AppServ\www\Request

当我打开网页时
http://localhost:8080/index.php跳到了404页面
http://localhost:8080/index.php/main也跳到了404页面(程序中有这个Controller,和视图)
我要怎么修改里面的配置才能正常运行呢

baiyuxiong 发表于 2011-10-9 22:14:48

http://localhost:8080/Request/index.php
??

白狐书生 发表于 2011-10-10 09:31:02

RewriteEngine on
RewriteCond $1 !^(index\.php|images|theme|robots\.txt|test.php|favicon.ico|syncgames.php)
RewriteRule ^(.*)$ index.php/$1

.htaccess文件是这样的
页: [1]
查看完整版本: 项目怎么设置才能访问