我有類似/story.php?id=31的網址
我想把它顯示爲/31.html 如何?不錯的網址與Apache和PHP
0
A
回答
1
你」我想要使用Apache的mod_rewrite引擎。
你正在尋找的會是這個樣子的規則:
RewriteEngine On
RewriteBase/
RewriteRule ^([0-9]+)\.html$ story.php?id=$1 [L]
的[問題得到使用重定向/重寫規則不錯的瀏覽器URL](
3
mod_rewrite
就是答案。見例如this guide或this one。
/31.html
- >/story.php?id=31
(渲染你的鏈接是另一個 - 更容易 - 發行)
RewriteEngine on
RewriteRule ^/([0-9]+)\.html$ /story.php?id=$1 [L,QSA]
1
使用Apache和mod_rewrite的,可能sollution可能是:
RewriteEngine On
RewriteRule ^([0-9]+)\.html /story.php?id=$1 [NC,QSA,L]
相關問題
- 1. 清潔網址PHP和Apache
- 2. PHP get_headers不是本地的Apache網址
- 3. 網址rewritting與Apache的mod_rewrite
- 4. PHP讀取搜索(Apache)的網址
- 5. 更短的網址與PHP
- 6. PHP的安全與網址?
- 7. 找「家」的網址與PHP
- 8. 清理的網址與PHP
- 9. 驗證網址與JavaScript和PHP
- 10. 網址和標題與PHP片段
- 11. Php Apache獲取引用網址
- 12. Apache/PHP - 別名傳出網址
- 13. 使用PHP和Apache清理WordPress的URL網址
- 14. 與html.actionlink錯誤的網址
- 15. Apache網址與維護頁面
- 16. Apache網址與n個參數重寫
- 17. 修復:Mediawiki與Nginx和Apache的80個網址
- 18. Apache網址重寫
- 19. PHP網址參數錯誤
- 20. mod_rewrite的模式Apache網址
- 21. Apache友好的網址
- 22. 貝寶返回網址不與PHP和HTML格式
- 23. 代碼網站在PHP與sef網址
- 24. 網址注入問題與PHP網站
- 25. 更改網站的網址與Apache國防部重寫
- 26. 不錯的搜索網址
- 27. CMSMS不錯的網址
- 28. 不錯的網址結構
- 29. 更改php搜索網址到使用PHP和mod_rewrite短網址
- 30. PHP的分析與網址「mod_rewrite的」
可能重複http://stackoverflow.com/questions/2553241/problems -getting-nice-browser-url-using-redirect-rewriterule) – Quentin 2010-06-24 10:55:10
或者在這裏:http://stackoverflow.com/search?q=url+rewrite+php – DrColossos 2010-06-24 10:56:42