我有一個自定義的PHP腳本,每個頁面page.php?id = [number]和page.php。我讀過一些的.htaccess教程,但我不知道哪一個是做的最適當的方式: 例,正確的mod_rewrite搜索引擎友好的網址
page.php?id=12
到page/id-12/
和
page.php
到page/
和page
這裏的我目前有:以上
RewriteEngine On
RewriteRule ^category/([0-9])$ /category.php?id=$1
RewriteRule ^category/$ /category.php
代碼返回,如果我訪問category
404沒有找到,但如果我訪問0123出現好嗎(以斜線)
觀點:http://stackoverflow.com/questions/4504169/seo-friendly-urls-htaccess –