diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-06-01 14:25:46 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-06-01 14:25:46 +0000 |
commit | 3df04e1ce435380d8560faaf67a91b88b7cfb3f6 (patch) | |
tree | f0297d14874502dd568bab6b61c1b71432f20d9f /.htaccess | |
parent | 05602d9aaf42e2e678182b02d091c07434ea614d (diff) | |
download | semanticscuttle-3df04e1ce435380d8560faaf67a91b88b7cfb3f6.tar.gz semanticscuttle-3df04e1ce435380d8560faaf67a91b88b7cfb3f6.tar.bz2 |
Interface fix: put order into RSS links
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@134 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24,5 +24,9 @@ RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.php -f -RewriteRule ^([^/]+)/?(.*) $1.php?query=$2 [L,QSA] + +#if cleanurls don't work, comment option 1 (by adding # at the beginning) and uncomment option 2: +RewriteRule ^([^/]+)/?(.*) $1.php?query=$2 [L,QSA] #option 1 +#RewriteRule ^([^/]+)/?(.*) $1.php/$2 [L] #option 2 + </IfModule> |