首页  >  问答  >  正文

宝塔面板配置的LAMP,上传thinkPHP,访问报错File not found,修改.htaccess则出现无法加载资源

本人菜鸟,用宝塔面板配置的LAMP,上传thinkPHP 3.2.3(代码在wamp中测试可用)。
访问http://www.xxx.me/Home/Index/... 直接报错File not found,console显示:
Failed to load resource: the server responded with a status of 404 (Not Found)

此时的.htaccess为默认的

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/ [QSA,PT,L]
</IfModule>

.htaccess修改为以下之后就能访问http://www.xxx.me/Home/Index/... 了

<IfModule mod_rewrite.c>
 RewriteEngine on
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.*)$ index.php?s=/ [QSA,PT,L]
</IfModule>

但是引用自public的图片和js均无法显示,例如console显示
http://kusima.me/public/js/jq... Failed to load resource: the server responded with a status of 404 (Not Found)

直接打开http://www.xxx.me/public/js/j...会报错
无法加载模块:Public

补充说明:
文件目录是TP默认的如下

入口文件是默认的定义
// 定义应用目录
define('APP_PATH','./Application/');

[ Apache ]也有相应配置
httpd.conf配置文件中加载了mod_rewrite.so模块
AllowOverride None 将None改为 All

配置文件中已设置url模式
'URL_MODEL' => 1,

这一切在wamp中测试均无出错。
请教大家,不知道哪里出错了??

怪我咯怪我咯2728 天前1970

全部回复(2)我来回复

  • 为情所困

    为情所困2017-05-24 11:34:12

    多谢各位。
    自己查到原因了,linux中要注意严格区分大小写。
    犯了低级错误。

    回复
    0
  • star_辰

    我也出现这个问题了,请问一下具体是怎么解决的

    star_辰 · 2018-11-05 14:03:38
  • 取消回复