我有2頁從MySQL中選擇數據。第一頁 - readmore.php,從表格帖子中獲取url
的帖子。第二頁 - categories.php從表格類別中獲取caturl
的數據。在PHP中的友好URL?與其他頁面閱讀更多在htaccess
readmore.php在.htaccess
RewriteEngine On
RewriteRule ^([a-zA-Z0-9-/]+).html$ readmore.php?url=$1
RewriteRule ^([a-zA-Z0-9-/]+).html/$ readmore.php?url=$1
categories.php在.htaccess
RewriteEngine On
RewriteRule ^([a-zA-Z0-9-/]+).html$ categories.php?caturl=$1
RewriteRule ^([a-zA-Z0-9-/]+).html/$ categories.php?caturl=$1
我所在時得到caturl htaccess的重定向問題我readmore.php但我想重定向到的類別。 php
@ Neograph734我不明白!你的意思是將RewriteRule^teaser_替換爲RewriteRule^caturl_或者什麼?我得到了我的網址,就像那個http://www.afrogfx.com/20121102103658-Beautiful-Island.html - > Domain.com/url –
What @ Neograph734說的是你將如何區分請求的頁面是否轉到' readmore.php'或'categories.php'? – qsheets
@ Neograph734好的,謝謝你,我做到了;)尊重 –