Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.42 KB | None | 0 0
  1. php_value upload_max_filesize 64M
  2. php_value post_max_size 64M
  3. php_value max_execution_time 300
  4. php_value max_input_time 300
  5.  
  6. RewriteEngine On
  7.  
  8. RewriteRule ^about/?$ www.mydomain.com/about/history/ [L,NC,R=301]
  9. RewriteRule ^library/?$ www.mydomain.com/the-library/gallery/ [L,NC,R=301]
  10.  
  11. RewriteRule ^index\.php$ - [L]
  12.  
  13. RewriteCond %{REQUEST_FILENAME} !-f
  14. RewriteCond %{REQUEST_FILENAME} !-d
  15. RewriteRule . index.php [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement