如何从 www.website.com 的不同目录加载内容

发布于 2024-10-28 04:26:31 字数 435 浏览 1 评论 0原文

如何显示 http://www.website.comwww 目录中的内容

,即当用户访问 http://www.website 时。 com 我想显示 /www 目录中的内容,但保持 url 相同。

我尝试了几种方法,但对于所有这些方法,网址也发生了变化......

虽然我想从 http://www.website.com/www/ 加载内容,但我想将网址保留为 http://www.website.com/

,其他页面也相同。,即 http://www.website.com/products.php:<代码>/www/products.php

How to display contents from www directory for http://www.website.com

i..e when a user visits http://www.website.com i want to display the contents from /www directory but keep the url same.

I have tried few methods, but for all of them the url changes as well....

Though i want to load the content from http://www.website.com/www/ i want to keep the url as http://www.website.com/

And same for other pages., i..e http://www.website.com/products.php : /www/products.php

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

岁月流歌 2024-11-04 04:26:31

您可以使用 htaccess 文件

RewriteEngine on

# Only apply to website.com URLs outside the www folder, but ignore real files and folders
RewriteCond %{HTTP_HOST} ^(www.)?website.com$
RewriteCond %{REQUEST_URI} !^/www/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /www/$1

# Finally redirect the topmost folder itself
RewriteCond %{HTTP_HOST} ^(www.)?website.com$
RewriteRule ^(/)?$ www/index.php [L]

You can use an htaccess file

RewriteEngine on

# Only apply to website.com URLs outside the www folder, but ignore real files and folders
RewriteCond %{HTTP_HOST} ^(www.)?website.com$
RewriteCond %{REQUEST_URI} !^/www/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /www/$1

# Finally redirect the topmost folder itself
RewriteCond %{HTTP_HOST} ^(www.)?website.com$
RewriteRule ^(/)?$ www/index.php [L]
深爱成瘾 2024-11-04 04:26:31

如果您运行的是 apache,则可以更改 httpd.conf 文件中的根文件夹 (UserDir)

http://httpd.apache.org/docs/2.0/mod/mod_userdir.html#userdir

所以你必须这样做:

用户目录 /www/

If you are running apache, you can change the root folder in the httpd.conf file (UserDir)

http://httpd.apache.org/docs/2.0/mod/mod_userdir.html#userdir

So you would have to do something like:

UserDir /www/

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