
Untitled
By: a guest on
May 9th, 2012 | syntax:
None | size: 0.47 KB | hits: 16 | expires: Never
How to add .php extension using .htaccess url rewriting?
www.mywebsite.com/page.php?page=about-us
www.mywebsite.com/about-us
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !^.*(images/|.js|.css).*$ [NC]
RewriteRule ^([a-zA-Z0-9_-]+)$ /page.php?page=$1
www.mywebsite.com/about-us.php
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !^.*(images/|.js|.css).*$ [NC]
RewriteRule ^([a-zA-Z0-9_-]+).php$ /page.php?page=$1