開啟網址輸入http://localhost/tp5/public/
可以存取如下介面:
##默認情況下,URL是不區分大小寫的,也就是說 URL裡面的模組/控制器/操作名會自動轉換為小寫,控制器在最後呼叫的時候會轉換為駝峰法處理。 例如:http://localhost/index.php/Index/Blog/read// 和下面的訪問是等效的http://localhost/index. php/index/blog/read
http://localhost/index.php/index/blogtest/read
1、httpd.conf設定檔中載入了mod_rewrite.so模組
2、AllowOverride None 將None改為 All
3 、在應用程式入口文件同級目錄新增.htaccess文件,內容如下:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/ [QSA,PT,L] </IfModule>
#下一節