我在以下目录中有一个.htaccess文件:root/en
。
我的index.php位于以下目录中:root/en/public/index.php
。
如何编写.htaccess代码,以便当用户输入以下网址时:root/en
它会将他重定向到我的index.php?
答案 0 :(得分:0)
您需要启用mod_rewrite。假设.htaccess在根目录中,这对我有用:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/root/en/public
RewriteRule en /root/en/public [L]
请务必在尝试之前清理浏览器缓存,否则您将继续看到目录索引。