如何在 Apache 的 URL 中执行不带文件扩展名的重定向

发布于 2024-12-08 09:23:10 字数 432 浏览 1 评论 0原文

如果页面没有指定扩展名,而不将用户物理重定向到实际的 URL,是否有一种通用方法可以将一个页面指向另一个页面?

e.g. 
http://www.mydomain.com/  points to http://www.mydomain.com/public
http://www.mydomain.com/auth  points to http://www.mydomain.com/public/auth 
http://www.mydomain.com/auth/process points to http://www.mydomain.com/public/auth/process 
http://www.mydomain.com/auth/process/done points to http://www.mydomain.com/public/auth/process/done 

Is there a GENERIC way to point a page to another page if the page has no extension specified without physically redirecting the user to the actual URL?

e.g. 
http://www.mydomain.com/  points to http://www.mydomain.com/public
http://www.mydomain.com/auth  points to http://www.mydomain.com/public/auth 
http://www.mydomain.com/auth/process points to http://www.mydomain.com/public/auth/process 
http://www.mydomain.com/auth/process/done points to http://www.mydomain.com/public/auth/process/done 

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

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

发布评论

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

评论(2

亚希 2024-12-15 09:23:10

也许这就是您所需要的:

RewriteCond %{REQUEST_URI} !^/(public)(.*)$ [NC]
RewriteRule ^(.*)$ /public/$1 [L]

编辑:

添加此 RewriteCond 来检查扩展:

RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$

Maybe this is what you need:

RewriteCond %{REQUEST_URI} !^/(public)(.*)$ [NC]
RewriteRule ^(.*)$ /public/$1 [L]

Edit:

Add this RewriteCond to check for an extension:

RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
耶耶耶 2024-12-15 09:23:10

是的,您可以通过重写规则来做到这一点,但您应该了解一些有关 URL 或有关 URL 的一些条件,以防止重写其他 URL。

例如,您给定 URL 的重写规则是:

RewriteRule ^auth/(.*)$  public/auth/$1 [L]
RewriteRule  ^$   public [L]

yes , you can do it by rewrite rules but you should know something about URL or some conditions about that to prevent rewritting other URLs.

for example rewrite rule for your given URL is:

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