Forum Moderators: phranque
Where can I find some document about it?
Thanks.
RewriteEngine On
# Change the URI here to whatever you want your homepage to be
RewriteRule ^/$ /index.php?module=welcome [L,QSA]
# Changes /index.php?module=welcome to /welcome
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-d
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-f
RewriteRule ^/([^/]*)$ /index.php?module=$1 [L,QSA]
# Changes /index.php?module=users&class=login to /users/login
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-d
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-f
RewriteRule ^/([^/]*)/([^/]*)$ /index.php?module=$1&class=$2 [L,QSA]
# Changes /index.php?module=users&class=login&event=foo
# to /users/login/foo.html
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-d
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME}!-f
RewriteRule ^/([^/]*)/([^/]*)/([^/]*).html$ \
/index.php?module=$1&class=$2&event=$3 [L,QSA]
I would point out that the comments in this code are inaccurate, and the code itself contains several CPU-wasting inefficiencies. But without knowing what your specific problem is, I can't comment further.
Jim