使用 .htaccess 提供index.html或index.php
如果直接访问网站(无参数),我想使用 .htaccess 文件返回主页(index.html),如果其他链接
示例:
my_site.com 显示index.html,
则使用index.php/subdirectories/.... my_site.com/dir1/dir2/ 必须使用参数 dir1/dir2 重定向到 index.php ..
请帮助创建
我在现有文件中的这个 .htaccess 文件:
RewriteEngine On
RewriteRule ^(.*)(.html|.htm) $index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php [L]
我想对服务的index.html 文件进行例外处理进入网站时
提前致谢
I want to use .htaccess file to return homepage (index.html) if direct access to the web site (no parameters), and index.php/subdirectories/.... if other links
example :
my_site.com displaying index.html
my_site.com/dir1/dir2/ must redirect to index.php with parameter dir1/dir2..
please help creating this .htaccess file
i have in existing file this :
RewriteEngine On
RewriteRule ^(.*)(.html|.htm)$ index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ index.php [L]
i want to do exception to index.html file which serve when entering site
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 .htaccess 文件中尝试以下规则:
Try these rules in your .htaccess file:
如果你只有 html,你也可以这样使用。
If u have only html you can use like that also .