将子目录重定向到根子目录而不更改URL PHP

时间:2017-12-11 07:54:13

标签: php apache .htaccess redirect url-redirection

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

2 个答案:

答案 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]

这个对我有用。

感谢所有人。