我有這樣的代碼來打開mywebsite.com/any-post-name
:如何在不影響其他頁面的情況下在htaccess中打開mypage.com/link-page?
RewriteRule ^([a-zA-Z0-9_-]+)$ home.php?id=$1 [L,QSA]
的問題是,如果有人類型:mywebsite.com/any-post-name /
的頁面不會打開。 所以我想補充:
RewriteRule ^([a-zA-Z0-9_/-]+)$ home.php?id=$1 [L,QSA]
現在,其他每一頁轉到home.php過,例如,我有類: mypage.com/category/name-category - >會來home.php
RewriteRule ^category/([^(.*)].+)/(\d+)/?$ category.php?categoria=$1&id=$2
如何解決這個問題?
嘗試'home.php $',而不是'home.php ID = $ 1' – Perspective