标签: php apache .htaccess
我正在寻找一种改变方式:
domain.com/stsl
对此:
domain.com/about.php?info=stsl
我如何通过.htaccess做到这一点?
答案 0 :(得分:3)
将此规则放入htaccess(必须位于根文件夹中)
RewriteEngine On RewriteRule ^stsl$ /about.php?info=stsl [L]