我有3个PHP文件:index1.php,index2.php和index3.php
让我们假设我想拥有以下SEO路径:
/seo-path1/
/seo-path2/
/seo-path3/
如何配置.htaccess文件,以便当请求来自这些子文件夹时,它会重定向到各自的PHP文件?
/seo-path1/ ---> goes to index1.php
/seo-path2/ ---> goes to index2.php
/seo-path3/ ---> goes to index3.php
提前致谢。 映入眼帘。 何。
答案 0 :(得分:4)
这应该是你要找的东西:
RewriteEngine On
RewriteRule ^seo-path1/$ /index1.php
RewriteRule ^seo-path2/$ /index2.php
RewriteRule ^seo-path3/$ /index3.php