これを取得できないことを誓います。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.