只允許網站從 index.php 進入 - 使用 Apache
此需求是為了避免疏忽而引起安全性問題
- 設定 AllowOverride All
- 重新啟動 Apache
編輯 .htaccess
1 2 3 4 5 6 7 8 9 10 |
<Files *.php> Order Deny,Allow Deny from all Allow from 127.0.0.1 </Files> <Files index.php> Order Allow,Deny Allow from all </Files> |
優雅連結
1 2 3 4 |
RewriteEngine on ErrorDocument 404 /index.php RewriteRule ^Page/(.*)$ index.php?a=$1 RewriteRule ^Player:(.*)$ index.php?Player=$1 |
- 頁面 /index.php?a=xxx
/Page/xxx - 功能 /index.php?Player=yyy
/Player:yyy
-
MySQL 查詢欄位名稱
查詢是否有符合名稱欄位
1 |
SHOW COLUMNS FROM `table name` where Field='_time' |
顯示該資料表所有欄位詳細資訊
1 |
SHOW FULL FIELDS FROM database.`table name` |
Field, Type, Collation, Null, Key, Default, Extra, Privileges, Comment
欄位名稱, 類別, 編碼, Null(Yes / No), 鍵值, 預設值, 附加(auto_increment / ), 讀取權限, 說明
-
2,771 total views, 1 views today