htaccess url rewrite,remove querystring and file extension
Posted
by
Miranda
on Stack Overflow
See other posts from Stack Overflow
or by Miranda
Published on 2011-03-19T07:57:03Z
Indexed on
2011/03/19
8:09 UTC
Read the original article
Hit count: 193
.htaccess
|url-rewriting
my current url is something like:
http://something.somedomain.com/about_us/profile.php?tab1=about_us
a more complicated on is: http://something.somedomain.com/exchange_hosting/feature/outlook_web_access.php?tab1=exchange_hosting&tab2=feature&tab3=outlook_web_access
i want to make them shorter:
http://something.somedomain.com/about_us/profile http://something.somedomain.com/exchange_hosting/feature/outlook_web_access
my .htaccess
#################################
# Directory Indexes #
#################################
DirectoryIndex index.php
#########################################
# REWRITE RULES #
#########################################
RewriteEngine On
RewriteBase /
Options +FollowSymlinks
<IfModule mod_rewrite.c>
#not a file
RewriteCond %{REQUEST_FILENAME} !-f
#not a dir
RewriteCond %{REQUEST_FILENAME} !-d
#this dosen't work
#RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)$ /$1.php?tab1=$0&tab2=$1
</IfModule>
# END #
© Stack Overflow or respective owner