如何仅在网站的子文件夹中使用干净的 URL?
我有一个网站 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将此行放在 .htaccess 文件中的任何重写规则之前,这将打开重写引擎- 无需更改 httpd.conf。
.htaccess 文件只会影响它所在的文件夹以及该文件夹的任何子文件夹。
You place this line before any rewrite rules in your .htaccess file, which will switch on the rewrite engine - no httpd.conf change required.
The .htaccess file will only affect the folder it is in and any subfolder of that folder.