Advertisement
Rochet2

htaccess

Dec 5th, 2012
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. ErrorDocument 404 /
  2. ErrorDocument 403 /
  3.  
  4. # This converts all www.test.com/example/ to www.test.com/index.php?page=example
  5. RewriteEngine ON
  6. RewriteCond %{REQUEST_URI} !="" [NC]
  7. RewriteCond %{REQUEST_URI} !=/index.php [NC]
  8. RewriteRule ([^/]+)/?$ /index.php?page=$1 [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement