htaccess 行 - 500 错误

发布于 2024-12-07 14:32:33 字数 327 浏览 1 评论 0原文

我有一个 htaccess 文件:

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

我想添加下面的行,但它给了我 500 错误。

选项 - 索引

有人可以帮忙吗?

I have a htaccess file:

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

I want to add the line below, but it gives me 500 error.

Options -Indexes

Can somebody help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谷夏 2024-12-14 14:32:33

检查你的.htaccess所在目录是否在httpd.conf中启用了必要的AllowOverride(至少启用:AuthConfig和Options)。

确保它不在

<IfModule mod_rewrite.c>
...
</IfModule>

.htaccess 的一部分

内通常您的错误日志中应该有一条日志消息。我假设您会发现类似这样的内容:

[alert] [client 192.xxx.xxx.xxx] /path/to/web/.htaccess: Options not allowed here

此解决方案并不总是有帮助(取决于您使用的 apache 版本): 在某些情况下,您必须将此部分移至 httpd.conf 才能使其工作。

apache-docs 中有详细解释。

Check if the directory where your .htaccess lives in has enabled the neccessary AllowOverride (enabled must be: AuthConfig and Options at least) in the httpd.conf.

Make sure it is not within the

<IfModule mod_rewrite.c>
...
</IfModule>

part of your .htaccess

Usually you should have a logging-message in your error-log. I assume, that you will find something like this:

[alert] [client 192.xxx.xxx.xxx] /path/to/web/.htaccess: Options not allowed here

This solution does not always help (depending on the apache-version you are using): In some cases you have to move this section to your httpd.conf to make it work.

It is explained in detail in the apache-docs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文