Guest User

Untitled

a guest
Jan 13th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3.  
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6.  
  7. # Rewrite all other URLs to index.php/URL
  8. RewriteRule ^(.*)$ index.php?p=$1 [PT,L]
  9.  
  10.  
  11. </IfModule>
Add Comment
Please, Sign In to add comment