I've created a small .htaccess file under my phpwiki directory that uses apache mod_rewrite. See the example below:
RewriteEngine on RewriteRule ^([A-Za-z0-9_:]*[^/])$ index.php/$1
This lets me use http://wiki.socklabs.com/Sock instead of ~/index.php/Sock. Might be usefull to you folks.
Log in to post a comment.
I've created a small .htaccess file under my phpwiki directory that uses apache mod_rewrite. See the example below:
RewriteEngine on
RewriteRule ^([A-Za-z0-9_:]*[^/])$ index.php/$1
This lets me use http://wiki.socklabs.com/Sock instead of ~/index.php/Sock. Might be usefull to you folks.