运行情景 Nginx/Apache 、本文o版MySQL 5.6+
碰头域名妨碍装置操作
Nginx伪动态:
code
rewrite ^/index.html$ /index.php last;
rewrite ^/about.html$ /about.php last;
rewrite ^/search.html$ /search.php last;
rewrite ^/ranking.html$ /ranking.php last;
rewrite ^/apply.html$ /apply.php last;
rewrite ^/404.html$ /404.php last;
rewrite ^/category-([1-9]+[0-9]*).html$ /category.php?由宣缘故阴爱源码金铲铲科技外挂插件id=$1 last;
rewrite ^/category-([a-zA-Z]+).html$ /category.php?alias=$1 last;
rewrite ^/site-([1-9]+[0-9]*).html$ /site.php?id=$1 last;
rewrite ^/article.html$ /article.php last;
rewrite ^/article-list-([1-9]+[0-9]*).html$ /article_list.php?id=$1 last;
rewrite ^/article-([1-9]+[0-9]*).html$ /article_show.php?id=$1 last;
rewrite ^/img/favicon/(.*)$ /favicon.php?url=$1 last;
rewrite ^/img/favicon/(.*).png$ /favicon.php?url=$1 last;
rewrite ^/img/preview/(.*).png$ /preview.php?url=$1 last;
location ~ "^/img/favicon/([^/]+)/?.png$" {
try_files /$uri /$uri/ /favicon.php?url=$1;
}
location ~ "^/img/preview/([^/]+)/?.png$" {
try_files /$uri /$uri/ /preview.php?url=$1;
}
Apache伪静 :
code
RewriteEngine OnRewriteBase /RewriteRule ^index.html index.php [L,NC]RewriteRule ^about.html about.php [L,NC]RewriteRule ^search.html search.php [L,NC]RewriteRule ^ranking.html ranking.php [L,NC]RewriteRule ^article.html article.php [L,NC]RewriteRule ^apply.html apply.php [L,NC]RewriteRule ^404.html 404.php [L,NC]RewriteRule ^category-([0-9]+).html category.php?id=$1 [L,NC]RewriteRule ^category-([a-zA-Z]+).html category.php?alias=$1 [L,NC]RewriteRule ^site-([0-9]+).html site.php?id=$1 [L,NC]RewriteRule ^article-list-([0-9]+).html article_list.php?id=$1 [L,NC]RewriteRule ^article-([0-9]+).html article_show.php?id=$1 [L,NC]RewriteRule ^img/favicon/(.*)\.png$ favicon.php?url=$1 [L,NC]RewriteRule ^img/preview/(.*)\.png$ preview.php?url=$1 [L,NC]