Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. RewriteEngine On
  2. RewriteCond %{HTTP_HOST} ^tc.gamingprouk.net [NC]
  3. RewriteCond %{SERVER_PORT} 80
  4. RewriteRule ^(.*)$ https://www.tc.gamingprouk.net/$1 [R,L]
  5. # Hiding file extensions
  6. Options +MultiViews
  7.  
  8. RewriteEngine on
  9.  
  10. # For .php, .html & .shtml URL's:
  11. RewriteCond %{REQUEST_FILENAME} !-f
  12. RewriteRule ^([^.]+)$ $1.php [NC,L]
  13. RewriteRule ^([^.]+)$ $1.html [NC,L]
  14. RewriteRule ^([^.]+)$ $1.shtml [NC,L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement