我的.htaccess文件有問題。PHP .htaccess RewriteRule允許多種組合
在我的.htaccess規則,如果我把這個:
RewriteRule ^post/([^/]*)$ /the_post.php?id=$1 [L]
我就能夠瀏覽的網址是這樣的:
http://www.example.com/post/12
但如果我嘗試:
http://www.example.com/post/12/
或
http://www.example.com/post/12/something-else-here
該頁面未建立。
什麼是正確的方式來允許任何可能的組合的網址?
- http://www.example.com/post/12
- http://www.example.com/post/12/
- http://www.example.com/post/12/something-else-這裏
謝謝你的時間!
它works.Thanks! – Nano