如何从 htaccess 中的默认路由中排除 api.php

发布于 2024-11-05 23:39:42 字数 509 浏览 0 评论 0原文

我使用 Zend 提供的默认 .httaccess。我在 apache 配置中定义了另一条路由,以便提交到 /api.php/WHATEVER 的所有内容都被路由到另一个框架。

如果我将默认路由添加到 .htaccess 文件中,则该规则将被覆盖。我尝试禁用重写引擎的方法如下:

RewriteEngine On
# api.php
RewriteCond %{REQUEST_URI} !^/(api\.php/.*)$
# Existing file
RewriteCond %{REQUEST_FILENAME} -s [OR]
# Existing directory
RewriteCond %{REQUEST_FILENAME} -l [OR]
# Symbolic link
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

不幸的是,我没有看到错误。感谢您的帮助。

I use the default .httaccess provided by Zend. I have another route defined in my apache configs so that everything submitted to /api.php/WHATEVER is being routed to another framework.

If I add the default routes into the .htaccess file, this rule is being overwritten. What I tried to do to disable the rewrite engine was the following:

RewriteEngine On
# api.php
RewriteCond %{REQUEST_URI} !^/(api\.php/.*)$
# Existing file
RewriteCond %{REQUEST_FILENAME} -s [OR]
# Existing directory
RewriteCond %{REQUEST_FILENAME} -l [OR]
# Symbolic link
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

Unfortunately, I don't see the error. Thanks for your help.

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

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

发布评论

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

评论(1

纸伞微斜 2024-11-12 23:39:42

也许这应该有效:

RewriteEngine On
# api.php
RewriteCond %{REQUEST_URI} ^/(api\.php/.*)$
RewriteRule  api.php?(.*) [R=301,L]
# Existing file
RewriteCond %{REQUEST_FILENAME} -s [OR]
# Existing directory
RewriteCond %{REQUEST_FILENAME} -l [OR]
# Symbolic link
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

但你可以适应......

Maybe this should work :

RewriteEngine On
# api.php
RewriteCond %{REQUEST_URI} ^/(api\.php/.*)$
RewriteRule  api.php?(.*) [R=301,L]
# Existing file
RewriteCond %{REQUEST_FILENAME} -s [OR]
# Existing directory
RewriteCond %{REQUEST_FILENAME} -l [OR]
# Symbolic link
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

but you may adapt...

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