这是一个短网址生成网站,采用php编写
<IfModule rewrite_module>
RewriteEngine On
#RewriteRule ^/(.*)$ /link.php?url=$1 [L]
RewriteRule ^/(((?!\.php).)*)$ /link.php?url=$1 [L]
</IfModule>
或者在.htaccess中加入
RewriteRule ^/(((?!\.php).)*)$ /link.php?url=$1 [L]
rewrite ^/(.*)$ /link.php?url=$1 last;