洞悉互聯(lián)網(wǎng)前沿資訊,探尋網(wǎng)站營(yíng)銷(xiāo)規(guī)律
作者:Smileby陌少羽 | 2019-06-10 10:06 |點(diǎn)擊:
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;