动态网页转伪静态

文件格式 .htaccess 
 
 RewriteEngine On
#RewriteBase / 
RewriteRule ([a-zA-Z0-9]{1,})-([a-zA-Z0-9]{1,})-([a-zA-Z0-9]{1,})$ index.php?action=$1&do=$2&query=$3
RewriteRule ([a-zA-Z0-9]{1,})-([a-zA-Z0-9]{1,})$ index.php?action=$1&do=$2
RewriteRule ^([a-zA-Z0-9]{1,})$ index.php?action=$1 
原文地址:https://www.cnblogs.com/ince/p/10974691.html