-2
如何重寫URL我有這樣如何使用這個mod_rewrite?
/details.php?pid={id}
exam: /details.php?pid={ee76f41017c6f6aa762a2bfb7def83c5}
我想tihs
/products/{id}/name
我試試這個
RewriteEngine on
RewriteCond %{QUERY_STRING} ^cat=(.*)
RewriteRule ^details.php /products/%1? [R=301]
這
RewriteEngine On
RewriteRule ^products/([^/]*)$ /details.php?pid=$1 [L]
所有的一天,對不起,如果讓你生氣的。 – user3612235
我不知道關鍵字來搜索它。我的英語技能讓我很難理解對不起,我不是「生氣」。 – user3612235
我不是「生氣」。但是你需要在問題中展示你完全嘗試過的東西。這有助於回答它 – hek2mgl