虚拟主机无法修改运行目录安装方法 把public下的文件复制到根目录下 修改 根目录下的 index.php文件
把public下的文件复制到根目录下
修改 根目录下的 index.php,admin.php文件
删除以下内容
$install = dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR.'install.lock';
if(!file_exists($install)){
header('Location: /install/');
die;
}
修改文件中的引用路径
如 require __DIR__ . '/../vendor/autoload.php';
改为 require __DIR__ . '/vendor/autoload.php';
.htaccess 要是针对静态文件资源
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [L] </IfModule>