作者:Smileby陌少羽 | 2019-06-10 10:06 |点击:
RewriteEngine on
RewriteRule ^about about.php [L]
RewriteRule ^api-about api-about.php [L]
RewriteRule ^contact contact.php [L]
RewriteRule ^tos tos.php [L]
RewriteRule ^([^/.]+)/?$ link.php?id=$1 [L]
RewriteRule ^404 404.php [L]
Options -Indexes
ErrorDocument 404 http://go.f27.net/404
ErrorDocument 403 http://go.f27.net/404
rewrite "^/about" /about.php last;
rewrite "^/api-about" /api-about.php last;
rewrite "^/contact" /contact.php last;
rewrite "^/tos" /tos.php last;
rewrite "^/([^/.]+)/?$" /link.php?id=$1 last;