.htaccess
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. # General Apache options
  2. AddHandler fastcgi-script .fcgi
  3. #AddHandler fcgid-script .fcgi
  4. AddHandler cgi-script .cgi
  5. #Options +FollowSymLinks +ExecCGI
  6. # If you don't want Rails to look in certain directories,
  7. # use the following rewrite rules so that Apache won't rewrite certain requests
  8. # Example:
  9. #   RewriteCond %{REQUEST_URI} ^/notrails.*
  10. #   RewriteRule .* - [L]
  11. # Redirect all requests not available on the filesystem to Rails
  12. RewriteEngine On
  13. # If Typo is accessed via an Alias directive, then you MUST also set 
  14. # the RewriteBase in this htaccess file.
  15. #
  16. # Example:
  17. #   Alias /blog /path/to/typo/public
  18. #   RewriteBase /blog
  19. RewriteRule ^$ index.html [QSA]
  20. RewriteRule ^([^.]+)/!$ $1.html [QSA]
  21. RewriteCond %{REQUEST_FILENAME} !-f
  22. RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
  23. # In case Typo experiences terminal errors
  24. # Instead of displaying this message you can supply a file here which will be rendered instead
  25. # Example:
  26. #   ErrorDocument 500 /500.html
  27. ErrorDocument 500 "<h2>Application error</h2>Typo failed to start properly"