Advertisement
Guest User

Default .htaccess FIle for CubeCart v6

a guest
Jan 28th, 2015
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. ## File Security
  2. <FilesMatch "\.(htaccess)$">
  3. Order Allow,Deny
  4. Deny from all
  5. </FilesMatch>
  6.  
  7. #### Apache directory listing rules ####
  8. DirectoryIndex index.php index.htm index.html
  9. IndexIgnore *
  10.  
  11. #### Rewrite rules for SEO functionality ####
  12. <IfModule mod_rewrite.c>
  13. RewriteEngine On
  14. RewriteCond %{REQUEST_FILENAME} !-f
  15. RewriteCond %{REQUEST_FILENAME} !-d
  16. RewriteCond %{REQUEST_URI} !=/favicon.ico
  17. RewriteRule ^(.*)\.html?$ index.php?seo_path=$1 [L,QSA]
  18. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement