我有一個使用Codeigniter設計的應用程序,並且在我的本地主機上一切正常工作,但在實際部署它之後正常工作。當我試圖打開http://www.wesecure.com.ng/posts/view_posts/3時,得到響應服務器錯誤500。Codeiniter錯誤:服務器錯誤500
我已經搜遍了所有的網絡,但沒有解決方案似乎工作的一些技術原因,我無法弄清楚。我會感謝您的支持
.htaccess.php
<IfModule mod_rewrite.c>
# allow_override On
# mod_rewrite is installed
RewriteEngine on
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
</IfModule>
$配置[ 'index_page'] = 'http://www.wesecure.com.ng/'; $ config ['uri_protocol'] ='AUTO';
改變調試mod,然後顯示所有的php錯誤 –