这个 .htaccess 文件有什么问题?
在我的根目录中有两个子文件夹:生产和开发。我想将所有传入流量发送到生产文件夹,这就是我的网站所在的位置。
在根目录中,我有这个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
Try this one