Shorten the URL from example.com/page.php?var=letters to example.com/letters

前端 未结 3 1845

I\'m kinda new to URL Rewriting in .htaccess , and I tried to do it myself following some tutorials. No success though ....

I want to shorten http://www.example.co

3条回答
  •  时光说笑
    2021-01-26 12:21

    
        RewriteEngine on
        RewriteCond %{REQUEST_FILENAME} !-f # if the requested file does not exist
        RewriteRule ^(.+)$ page.php?var=$1 # rewrite the request
    
    

提交回复
热议问题