fahimmurshed

PDF file htaccess for react site

Jun 27th, 2026
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteBase /
  4.  
  5. RewriteRule ^index\.html$ - [L]
  6.  
  7. RewriteCond %{REQUEST_FILENAME} !-f
  8. RewriteCond %{REQUEST_FILENAME} !-d
  9.  
  10. RewriteRule . /index.html [L]
  11. </IfModule>
  12.  
  13. <FilesMatch "\.pdf$">
  14.     Header set Content-Disposition "inline"
  15. </FilesMatch>
Advertisement
Add Comment
Please, Sign In to add comment