.htaccess rewriteRule (./index.php?page=projects&id=$1)

前端 未结 1 773
温柔的废话
温柔的废话 2021-01-25 00:01

I\'m trying to rewrite the URL using htaccess, but I have some problems that I hope you could help me with.

This is the contents of my .htaccess file

Rew         


        
1条回答
  •  甜味超标
    2021-01-25 00:29

    You can have another rule for /info:

    RewriteEngine On  
    
    RewriteCond %{SCRIPT_FILENAME} !-d  
    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteRule ^([^/]+)/?$ ?page=$1 [L,QSA,NC]
    
    RewriteCond %{SCRIPT_FILENAME} !-d  
    RewriteCond %{SCRIPT_FILENAME} !-f  
    RewriteRule ^(.+)$ index.php?page=projects&id=$1 [L,QSA]
    

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