Redirect all to index.php using htaccess

后端 未结 7 2193
情话喂你
情话喂你 2020-11-22 14:08

I\'m writing a simple PHP-based MVC-ish framework. I want this framework to be able to be installed in any directory.

My PHP script grabs the request uri and breaks

7条回答
  •  [愿得一人]
    2020-11-22 14:27

    After doing the don't forget to change your anchor tag, home

    Example:

    .htacces file
    RewriteEngine On
    
    RewriteRule ^about/$ /about.php
    
    PHP file:
     about
    
    

提交回复
热议问题