简单的htaccess问题

发布于 2024-10-20 09:32:08 字数 649 浏览 0 评论 0原文

我有一个简单的 htaccess 问题。 在我的本地主机中,我有一个文件夹 mysite。 mysite 有三个子文件夹。

  1. html
  2. dev
  3. 图像

我已将 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.

  1. html
  2. dev
  3. 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 技术交流群。

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

发布评论

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

评论(1

清秋悲枫 2024-10-27 09:32:08

尝试:

RewriteEngine On
RewriteBase /mysite/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ html/$1 [QSA]

为了澄清一点,它不会重写任何现有文件和目录,而是将所有内容重写到目录 html 中。

Try:

RewriteEngine On
RewriteBase /mysite/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ html/$1 [QSA]

To clarify a bit more, it doesn't rewrite any existing files and directories and rewrites everything to the directory html.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文