How to add .php extension using .htaccess url rewriting?

后端 未结 1 1567
心在旅途
心在旅途 2021-01-16 17:30

I have set up .htaccess file on my website which display SLUG text as page name in URL but without extension. e.g. Real url is

www.mywebsite.com/page.php?pa         


        
相关标签:
1条回答
  • 2021-01-16 18:07
    Options +FollowSymlinks
    RewriteEngine On
    
    RewriteCond %{REQUEST_URI} !^.*(images/|\.js|\.css).*$ [NC]
    RewriteRule ^([a-zA-Z0-9_-]+)\.php$ /page.php?page=$1
    
    0 讨论(0)
提交回复
热议问题