如何仅在网站的子文件夹中使用干净的 URL?

发布于 2024-09-04 01:20:44 字数 523 浏览 5 评论 0原文

我有一个网站 http://www.mydomain.com 在这里,我创建了一个子文件夹 http://www.mydomain.com/products。我想将产品文件夹内的所有页面更改为干净的 URL。我知道 .htaccess 应该位于产品文件夹内。如果启用,它会影响我网站的所有父目录和文件

我的意思是 http://www.mydomain.com / 这里,是否也会影响这里的页面。

我对 .htaccess 文件还有一个疑问,有没有一种方法可以通过任何代码启用 mod_rewrite 而无需直接编辑 httpd.conf 文件

请帮助我

谢谢

I have a web site http://www.mydomain.com
Here I have created a sub folder http://www.mydomain.com/products. I want to change all the page inside the product folder as clean URL. I know .htaccess should be inside product folder. If it's enabled, will it affect all the parent directories and files of my site

I mean http://www.mydomain.com/ here, will it affect the pages here also.

I have one more doubt about .htaccess file, is there a way I can enable mod_rewrite through any code code without directly editing httpd.conf file

Please help me

Thanks

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

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

发布评论

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

评论(1

国粹 2024-09-11 01:20:44

我对 .htaccess 文件还有一个疑问,有没有一种方法可以通过任何代码启用 mod_rewrite 而无需直接编辑 httpd.conf 文件

您将此行放在 .htaccess 文件中的任何重写规则之前,这将打开重写引擎- 无需更改 httpd.conf。

RewriteEngine on

如果启用,是否会影响我网站的所有父目录和文件

.htaccess 文件只会影响它所在的​​文件夹以及该文件夹的任何子文件夹。

i have one more doubt about .htaccess file, is there a way i can enable mod_rewrite through any code code without directly editing httpd.conf file

You place this line before any rewrite rules in your .htaccess file, which will switch on the rewrite engine - no httpd.conf change required.

RewriteEngine on

If it's enabled, will it affect all the parent directories and files of my site

The .htaccess file will only affect the folder it is in and any subfolder of that folder.

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