始终加载一个带有 .htaccess 的文件

发布于 2024-11-10 05:30:05 字数 237 浏览 0 评论 0原文

我无法让它发挥作用;

它应该做这些事情: 始终加载 page.php (当服务器上不存在文件时)。 .include 是一个现有文件夹。当用户访问.include/...时,也会加载page.php 我的脚本以 RewriteEngine On 开头,但后来我陷入困境...... 我现在可以做什么来解决这个问题?

I can't get this to work;

It should do these things:
Always load page.php (when file does not exists on server). .include is an existing folder. When the user visits .include/..., then also load page.php
My scripts starts with RewriteEngine On, but then I'm stuck...
What can I do now to solve this problem?

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

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

发布评论

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

评论(1

蓝天 2024-11-17 05:30:05

你的帖子非常缺乏描述性。你能提供代码示例、详细说明等等吗?

据我所知,你可以尝试这个:

RewriteEngine On
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /page.php [NC,QSA]

Your post is terribly non-descriptive. Can you provide code samples, elaborate, etc..?

From what I can tell, you might try this:

RewriteEngine On
Options +FollowSymlinks
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /page.php [NC,QSA]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文