简单的htaccess问题
我有一个简单的 htaccess 问题。 在我的本地主机中,我有一个文件夹 mysite。 mysite 有三个子文件夹。
- html
- dev
- 图像
我已将 htaccess 放在 mysite 文件夹中。我的规则是,如果任何人通过 http://localhost/mysite 访问网站,它应该从 html 文件夹中读取文件。 我当前的 htaccess 如下
RewriteBase /
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|dev|js|robots\.txt)
RewriteRule ^(.*)$ html/index.html$1 [L]
即 http://localhost/mysite/aboutus.html 应该显示 中的文件http://localhost/mysite/html/aboutus.html
-Arun
I have a simple htaccess issue.
In my localhost I have a folder mysite. mysite has three subfolders.
- html
- dev
- images
I have put my htaccess in mysite folder. My rule is if anyone access site through http://localhost/mysite it should read files from html folder.
My current htaccess is follows
RewriteBase /
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|dev|js|robots\.txt)
RewriteRule ^(.*)$ html/index.html$1 [L]
That is http://localhost/mysite/aboutus.html should show files in http://localhost/mysite/html/aboutus.html
-Arun
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
为了澄清一点,它不会重写任何现有文件和目录,而是将所有内容重写到目录 html 中。
Try:
To clarify a bit more, it doesn't rewrite any existing files and directories and rewrites everything to the directory html.