https://example.com/app1
这是我的子目录,它有一个在apache服务器上运行的index.html文件。
我需要将所有请求重定向到此目录,例如https://example.com/app1/*
到https://example.com/app1
,而不更改网址。
如果用户访问https://example.com/app1/test
,则应将其重定向到https://example.com/app1
,但网址应保持相同
https://example.com/app1/test
答案 0 :(得分:0)
您可以在public_html/. htaccess
:
RewriteEngine on
RewriteRule ^app1/((?!index\.html).+)$ /app1/ [NC,L]
答案 1 :(得分:0)
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([a-zA-Z0-9_-]*)$ index.php [nc,qsa]
这个对我有用。
感谢所有人。