工作codeigniter(xampp)无法正常工作 - .htaccess或index.php?

时间:2015-11-12 15:40:48

标签: php .htaccess codeigniter

嗨,我在这里有一个新的stackoverflow。 我在互联网上搜索了几个小时,但无法找到解决方案。

我正在研究一项关于我工作的项目并尝试将其上线。

当我在xampp中运行我的项目时,它运行正常,但是当我在线运行时,我看到" 404"在我的浏览器标签中。这是我得到的回应:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">
    <meta name="keyword" content="">
    <link rel="shortcut icon" href="img/favicon.png">

    <title>404</title>

    <!-- Bootstrap core CSS -->
<!--    <link href="--><!--assets/bs3/css/bootstrap.min.css" rel="stylesheet">-->
    <link href="

所以它从我用于a href的error_404.php文件中的第一个php开始标记停止。

这是我在根目录中的.htaccess:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /folder/index.php/$1 [L]

BASEPATH是:/var/www/vhosts/(domain_name).nl/(domain_name).eu/dashboard/system/ 我认为必须是:(domain_name).eu / dashboard / system / 或者我错了吗?

请帮帮我

2 个答案:

答案 0 :(得分:0)

尝试将其用作.htaac​​ess:

 RewriteEngine on

 # enable the directives - assuming they're not enabled globally
 ExpiresActive on

 # send an Expires: header for each of these mimetypes (as defined by server)
 ExpiresByType image/png "access plus 1 month"
 ExpiresByType image/gif "access plus 1 month"
 ExpiresByType image/jpeg "access plus 1 month"

 # css may change a bit sometimes, so define shorter expiration
 ExpiresByType text/css "access plus 1 days"

RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|jquery|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA]

答案 1 :(得分:0)

我在这里找到了解决方案.. Unable to access codeigniter controller in Live Server but accessible in localhost (xampp on windows)

tnxs jah

我忘了几个大箱子。对不起,伙计......羞辱我