SEO friendly URL's with .htaccess

前端 未结 1 1056
梦如初夏
梦如初夏 2021-01-22 05:56

Can anybody please help me with some URL rewriting?

I have (for example) these pages:

www.mydomain.com/test/gallery.asp?id=2
www.mydomain.com/test/galler         


        
相关标签:
1条回答
  • 2021-01-22 06:33

    try this

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^photos/(.*)$ test/gallery.asp?id=$1 [L,QSA]
    

    first row is test if it isn't file

    second row is test if it isn't directory

    third will redirect photos/wildlife?a=true to test/gallery.asp?id=wildlife&a=true

    if you don't want to redirect with a=true, just give out QSA ;)

    0 讨论(0)
提交回复
热议问题