Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to add .php extension using .htaccess url rewriting?
  2. www.mywebsite.com/page.php?page=about-us
  3.        
  4. www.mywebsite.com/about-us
  5.        
  6. Options +FollowSymlinks
  7. RewriteEngine On
  8.  
  9. RewriteCond %{REQUEST_URI} !^.*(images/|.js|.css).*$ [NC]
  10. RewriteRule ^([a-zA-Z0-9_-]+)$ /page.php?page=$1
  11.        
  12. www.mywebsite.com/about-us.php
  13.        
  14. Options +FollowSymlinks
  15. RewriteEngine On
  16.  
  17. RewriteCond %{REQUEST_URI} !^.*(images/|.js|.css).*$ [NC]
  18. RewriteRule ^([a-zA-Z0-9_-]+).php$ /page.php?page=$1