.htaccess 286 B

1234567891011
  1. #BEGIN Short URL
  2. #<IfModule mod_rewrite.c>
  3. RewriteEngine On
  4. Options +FollowSymLinks
  5. RewriteCond %{SCRIPT_FILENAME} !-d
  6. RewriteCond %{SCRIPT_FILENAME} !-f
  7. #RewriteBase /
  8. RewriteCond %{REQUEST_URI} ^/([^/]+)/?$ [NC]
  9. RewriteRule .* s2u.php?c=%1 [L]
  10. #</IfModule>
  11. #END Short URL