.htaccess 将 root 重定向到 cgi-bin WordPress
我正在与一所学校合作,要求将 WordPress 安装在 cgi-bin 中。
我想将 htaccess 放在 public_html 文件夹中,以便它重定向到 cgi-bin。
示例:
从 /dept/my-dept/ 重定向到 /dept/my-dept/cgi-bin?
是否可以完全从 URL 中“隐藏”cgi-bin?显然,我无法将 WordPress 文件从 cgi-bin 移动到 /my-dept/ 根目录。
提前致谢。
I'm working with a school that requires Wordpress to be installed in the cgi-bin.
I'd like to put an htaccess in the public_html folder so it redirects to the cgi-bin.
Example:
Redirect from /dept/my-dept/ to /dept/my-dept/cgi-bin?
Also is it possible to "hide" the cgi-bin from the URL altogether? Obviously, I can't move the Wordpress files from cgi-bin to the /my-dept/ root directory.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
...如果您安装了 mod_rewrite
请参阅:http://httpd.apache.org /docs/2.0/misc/rewriteguide.html
您还可以执行 301 重定向,例如:
...但是使用第二种方法 cgi-bin 仍然可见。
...If you have mod_rewrite installed
See: http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
You could also do a 301 redirect like:
...But cgi-bin will still be visible with the second method.