.htaccess:添加 www 并直接到子文件夹
我正在尝试编写一个 htaccess 脚本,它会自动添加 www 并从子文件夹中提取内容。
这是我用来从子目录中提取的脚本。
RewriteEngine On
RewriteBase /
# pointing for the domain abc.com to folder abc
ReWriteCond %{HTTP_HOST} abc.com
ReWriteCond %{REQUEST_URI} !abc/
ReWriteRule ^(.*)$ abc/$1 [L]
每当我尝试合并一些代码来自动添加 www 时,尽管它以某种方式搞砸了。
I'm trying to write an htaccess script that both automatically adds the www and pulls the contents from a subfolder.
Here's the script I'm using to pull from a subdirectory.
RewriteEngine On
RewriteBase /
# pointing for the domain abc.com to folder abc
ReWriteCond %{HTTP_HOST} abc.com
ReWriteCond %{REQUEST_URI} !abc/
ReWriteRule ^(.*)$ abc/$1 [L]
Whenever I try to incorporate some code to automatically add www though it screws up in one way or another.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西应该有效。
Something like this should work.
像这样的事情应该有效:
我喜欢转义 的任何实例。在 URL 中,因为在正则表达式中,点将匹配任何内容,通常我会随意添加 no case [NC] 标志。第一条规则应重定向以包含 www,第二条规则应将所有其他路径定向到 abc 路径。
Something like this should work:
I like to escape any instance of . in a URL because in a regex a dot will match anything and generally I add the no case [NC] flag liberally. The first rule should redirect to include the www and the second rule should direct all other paths to the abc path.