apache RewriteRule 无法在服务器上运行,但可以在本地 xampp 上运行
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您的 Apache conf 中有
tail -f
/var/log/apache2/rewrite.log
文件。当您发出失败的请求时,请仔细观察此文件以及 Apache 错误日志。
然后,当问题解决后,请确保您在上面的
Directory
指令中使用正确的权限。Make sure in your Apache conf you have
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.