• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Help Ai thông tạo ReWrite URL WordPress giúp em với

codonmuadong

New Member
Ai pro wordpress cho em hỏi xiu
h em muon rewrite url domain.com/taive.php?id=$id&name=$name thành domain.com/taive/$id/$name thy dung code gi va tac dong vao file nao! Em xin cam on
 
domain.com/taive.php?id= $id&name=$name thành domain.com/taive /$id/$name
PHP:
RewriteEngine On
RewriteRule ^taive/(.*?)/(.*?)$ taive.php?id=$1&name=$2
Cái này phải Test qua mới chắc chắn được. Mình chắc 90% thôi :))
 
Anh thì hướng dẫn em fix đẹp hơn nhé domain.com/taive.php?id=$id&name=$name
Sẽ thành domain.com/$id/$name.html
PHP:
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /taive.php?id=$1&name=$2 [L]

Còn em muốn như của em domain.com/taive.php?id= $id&name=$name thành domain.com/taive/$id/$name thì dán code này vào đầu nhé
PHP:
RewriteEngine on
RewriteRule taive/(.*)/(.*)/ taive.php?id=$id&name=$name
 
domain.com/taive.php?id= $id&name=$name thành domain.com/taive /$id/$name
PHP:
RewriteEngine On
RewriteRule ^taive/(.*?)/(.*?)$ taive.php?id=$1&name=$2
Cái này phải Test qua mới chắc chắn được. Mình chắc 90% thôi :))
Theo anh thấy thì để thế này là ok
PHP:
RewriteEngine on
RewriteRule taive/(.*)/(.*)/ taive.php?id=$1&name=$2
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top