Advertisement
Guest User

.htaccess

a guest
Jul 30th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <ifModule mod_rewrite.c>
  2.  
  3. DirectoryIndex ./page.php?page_id=index
  4.  
  5. Options -Indexes
  6.  
  7. RewriteEngine On
  8.  
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. RewriteRule ^([^\.]+)$ ./page.php?page_id=$1 [NC,L]
  11.  
  12. RewriteRule ^admincp/([^/]+)$ ./page.php?map=admincp&page_id=$1
  13.  
  14. </ifModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement