我目前在 Linux 上使用 Apache。我一直在做一个 HTML 项目,但现在需要在服务器上运行它。
例如,即使根目录是“/var/www/”且 localhost/index.html 指向“/var/www/index.html”,我也可以让 localhost/project/index.html 指向“/project/index.html”
我可以在 .htaccess 文件中执行此操作吗?
答案1
你要Alias
,但这在 .htaccess 文件中不起作用。您必须使用mod_rewrite对于那些。