mod_rewrite:将所有内容重定向到 / (docroot)

发布于 2024-10-28 20:06:06 字数 532 浏览 1 评论 0原文

我的网站只有一个文件:index.html

我只想重定向http://www.一切除外。 mysite.com/http://www.mysite.com/

其中包括 /index.htmlsomephonydir/somefile.txt,凡是你能想到的——我不在乎它是什么,我只是想重定向到 /

我已尝试以下操作:

RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_URI} !^/$
RewriteRule ^.*$ / [L]

这给了我 500 内部服务器错误。

I have a site which has only ONE file: index.html.

I just want to redirect everything except for http://www.mysite.com/ to http://www.mysite.com/.

That includes /index.html, somephonydir/, somefile.txt, you name it -- I don't care what it is, I just want to redirect to /.

I've tried the following:

RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_URI} !^/$
RewriteRule ^.*$ / [L]

This gives me a 500 Internal Server error.

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

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

发布评论

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

评论(2

一抹淡然 2024-11-04 20:06:06

我找到了答案。我想我忘了告诉它重定向。 ;)

RewriteEngine on

RewriteCond %{REQUEST_URI} !^/$
RewriteRule ^.*$ / [R=302,L]

I found the answer. I guess I forgot to actually tell it to redirect. ;)

RewriteEngine on

RewriteCond %{REQUEST_URI} !^/$
RewriteRule ^.*$ / [R=302,L]
慈悲佛祖 2024-11-04 20:06:06

RewriteRule ^/(.+)$  / 


RewriteRule ^/(.+)$  / 

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