apache RewriteRule 无法在服务器上运行,但可以在本地 xampp 上运行

发布于 2024-12-11 17:14:10 字数 693 浏览 0 评论 0原文

我的 apache 重写规则有问题。此网址不适用于服务器,但适用于我的 xampp:

http://www.kajak-zveza.si/moduli/novice/jure-meglic-mora-ponovno-pod-noz

我的重写规则,

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

但这有效:

http://www.kajak -zveza.si/moduli/novice/index.php/jure-meglic-mora-ponovno-pod-noz

为什么?在 xampp 上工作但在 php 5.3.8 的服务器上不起作用的问题是什么

I have problem with my rewrite rules for apache. This url not working on server but works on my xampp:

http://www.kajak-zveza.si/moduli/novice/jure-meglic-mora-ponovno-pod-noz

my rewrite rule

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

but this works:

http://www.kajak-zveza.si/moduli/novice/index.php/jure-meglic-mora-ponovno-pod-noz

why? what is wrong that works on xampp but not on server with php 5.3.8

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

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

发布评论

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

评论(1

不甘平庸 2024-12-18 17:14:10

确保您的 Apache conf 中有

<Directory /path/to/your/site/dir>
AllowOverride All
</Directory>
#RewriteLog "/var/log/apache2/rewrite.log"
#RewriteLogLevel 3

tail -f /var/log/apache2/rewrite.log 文件。
当您发出失败的请求时,请仔细观察此文件以及 Apache 错误日志。

然后,当问题解决后,请确保您在上面的 Directory 指令中使用正确的权限。

Make sure in your Apache conf you have

<Directory /path/to/your/site/dir>
AllowOverride All
</Directory>
#RewriteLog "/var/log/apache2/rewrite.log"
#RewriteLogLevel 3

then tail -f the /var/log/apache2/rewrite.log file.
Watch this file closely when you make the failed request, also the Apache error log.

Then, when the problem is fixed, make sure you use the right permissions in the Directory directive above.

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