Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有网站
www.site.com
我想从 /en 子目录中读取根目录
无需将网址更改为
地址栏上的 www.site.com/en
将它放在根目录的 .htaccess 文件中应该可以解决问题,当然前提是已安装并启用了 mod_rewrite,并且在 conf 文件的 VirtualHost 中设置了 AllowOverride All。它不会改变地址栏。
RewriteEngine On RewriteRule ^(.*)$ en/$1 [L, NC, QSA]