500 Internal Server Error

后端 未结 7 1905
太阳男子
太阳男子 2021-01-23 07:35

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact t

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-23 08:15

    Try the following in .htaccess file as it is in my blog http://thephpcode.com/blog/codeigniter/removed-index_php_url

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

提交回复
热议问题