summaryrefslogtreecommitdiff
path: root/.htaccess
diff options
context:
space:
mode:
authorJams H Thompson <jht001@users.sourceforge.net>2006-07-23 00:56:06 +0000
committerJams H Thompson <jht001@users.sourceforge.net>2006-07-23 00:56:06 +0000
commit007538e7a7e3956d565b255369ce2cdf0d3a9fc7 (patch)
tree602a430836a779e33ef8d9c6b9d3b45499378c60 /.htaccess
parent1aefa3d2fd6bda330c9eed7f1626ba60a80062b1 (diff)
downloadwiki-007538e7a7e3956d565b255369ce2cdf0d3a9fc7.tar.gz
wiki-007538e7a7e3956d565b255369ce2cdf0d3a9fc7.tar.bz2
wiki-007538e7a7e3956d565b255369ce2cdf0d3a9fc7.zip
improve package management and performance, eliminate some package related install errors
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess14
1 files changed, 8 insertions, 6 deletions
diff --git a/.htaccess b/.htaccess
index 64f23a9..d9c83d2 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,9 +1,11 @@
<IfModule mod_rewrite.c>
- RewriteEngine on
- RewriteBase /wiki/
- RewriteCond %{SCRIPT_FILENAME} -f [OR]
- RewriteCond %{SCRIPT_FILENAME}/index.php -f
- RewriteRule ^(.*)$ - [L]
+ RewriteEngine on
+# RewriteBase /wiki/
+ RewriteCond %{SCRIPT_FILENAME} -f [OR]
+ RewriteCond %{SCRIPT_FILENAME}/index.php -f
+ RewriteRule ^(.*)$ - [L]
- RewriteRule ^(.*)$ index.php?page=$1 [L]
+ RewriteRule view/(.*)$ index.php?page=$1 [L]
+
+# RewriteRule ^(.*)$ index.php?page=$1 [L]
</IfModule>