标签: .htaccess
我是那个htaccess的新手。
我的问题是,我对index.php有一个分页:
http://localhost/index.php?pagina=2
我想通过此网址访问此内容:
http://localhost/page/2
我尝试了htaccess:
RewriteEngine On RewriteRule /page/(.*)$ index.php?pagina=$1
但它给了我404错误。