如何使用 htaccess 重定向到特定的子文件夹?我有这样的结构
dfg/pubblication1/index.html
在文件夹目录中没有 index.html 文件,只有 .htaccess 文件
我想要做的是,当用户链接到http://domain.ext/folder时,将自动重定向到http://domain.ext/folder/subfolder/index.html
我有这样的东西
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/dfg [NC]
RewriteRule ^(.+) /dfg/pubblication1/$1 [NC]
</IfModule>
但不幸的是不起作用。提前致谢