suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php - apache url 重写的问题

想要重写所有的php页面为htm,用户可以通过.htm?key=val的方式访问,不能通过.php?key=val的方式访问,怎么弄?我动不动就设置成循环了,总是弄不好

PHP中文网PHP中文网2816 Tage vor331

Antworte allen(1)Ich werde antworten

  • 天蓬老师

    天蓬老师2017-04-10 14:31:42

    <IfModule mod_rewrite.c>
        RewriteEngine on
    
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_URI} test.htm [NC]
        RewriteRule ^test.htm$ test.php [QSA,PT,L]
    
    </IfModule>
    

    Antwort
    0
  • StornierenAntwort