gpt4 book ai didi

php - .htaccess 的单一入口点显示 500 内部错误

转载 作者:行者123 更新时间:2023-12-04 18:46:47 25 4
gpt4 key购买 nike

我正在尝试为我的自定义 php mvc 应用程序创建一个入口点。我在我的 ubuntu 14.04 操作系统上使用 apache2 作为 php 服务器。

我的应用程序树:

本地主机/mvc

一世。 Controller

ii.楷模

iii.意见

iv.网络根

一个。索引.php
湾。 .htaccess

诉.htaccess

我的根目录 .htaccess 代码:

<IfModule mod_rewrite.c >
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>

和 webroot/.htaccess 代码:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [PT, L]
</IfModule>

但它显示如下,状态码为 500:

内部服务器错误
服务器遇到内部错误或配置错误,无法完成您的请求。

最佳答案

这条线是问题所在:

RewriteRule ^(.*)$ index.php [PT, L]

因为 PT, 后面有一个空格. mod_rewrite语法非常严格,不允许在任何地方使用未转义的空格。

您的 webroot/.htaccess可:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [PT,L]
</IfModule>

关于php - .htaccess 的单一入口点显示 500 内部错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33112698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com