我今天开始研究 Htaccess 并尝试了它。我想要实现的是,每当您访问 localhost/index.php 时,它都会将您重定向到“漂亮”的 URL(在本例中为:localhost/home)。
这是我目前的 Htaccess 文件:
RewriteEngine on
RewriteRule ^home/?$ index.php [NC,L]
我知道我目前正在做的只是将 /home 重写为 /index.php 但我也不知道如何做相反的事情..
帮助将得到appericiated!