我发誓无法得到这个,我阅读了 10 个教程但无法使其工作......我想要漂亮的 url,所以我的目录结构是这样的
localhost/my_website/home.php?page=dashboard
我在具有这些规则的.htaccess
文件夹中有一个文件my_website
#Redirect To Default Login Page
DirectoryIndex login.php
#Block Directory Listing
IndexIgnore *
# Turn on URL rewriting
RewriteEngine On
RewriteRule ^page/([^/\.]+)/?$ home.php?page=$1 [L]
但是当我输入这个时,http://localhost/my_website/home/dashboard
我实际上什么也没得到
我得到的是
The requested URL /my_website/home/dashboard was not found on this server.