rewrite 帮助实现页面静态化

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

RewriteRule ^product/(.*?)\.html$ /index\.php/goods/info/$1 [L]

RewriteRule ^(.*)$ /index.php/$1 [L]

 

html 存在则跳转到html文件 若不存在就到控制器  进入控制器可以生成该html文件 下次访问就是html文件了

你可能感兴趣的:(rewrite 帮助实现页面静态化)