这个 .htaccess 文件有什么问题?

发布于 2024-11-07 21:29:24 字数 263 浏览 0 评论 0原文

在我的根目录中有两个子文件夹:生产和开发。我想将所有传入流量发送到生产文件夹,这就是我的网站所在的位置。

在根目录中,我有这个 .htaccess:

RewriteEngine on
RewriteRule    ^$    production/    [L]
RewriteRule    (.*) production/$1    [L]

当我浏览域名时,我不断收到内部服务器错误。

我做错了什么? 谢谢!

In my root directory are two subfolders production and development. I would like to send all incoming traffic to the production folder, thats where my site is.

In the root i have this .htaccess:

RewriteEngine on
RewriteRule    ^$    production/    [L]
RewriteRule    (.*) production/$1    [L]

When i browse to the domain name I keep getting an internal server error.

What am i doing wrong?
Thanks!

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

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

发布评论

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

评论(1

时间海 2024-11-14 21:29:24

试试这个

RewriteCond %{HTTP_HOST} ^www.example.com [NC]
RewriteRule ^(.*)$ /poduction/

Try this one

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