首先確認 apache 設定檔
AllowOverride None
修改成
AllowOverride All
重啟apache serivce
情境1
網址列輸入 http://example.com/b/1234567890 且後面的參數為10個英數字
實際上是連結到 http://example.com/b.php?no=1234567890
vi .htaccess
RewriteEngine On
RewriteBase /
RewriteRule ^b/(\w{10})$ "b.php?no=$1"
Sams Teach Yourself PHP, MySQL and Apache All in One
文章標籤
全站熱搜
留言列表