mikaelstaer / The-Secretary

http://www.secretarycms.com
GNU General Public License v3.0
88 stars 22 forks source link

htaccess rewrite error #4

Open colb opened 9 years ago

colb commented 9 years ago

Got an error after a fresh install on a shared hosting (phpnet.org) and activated the clean URLs.

Replace :

RewriteEngine On
RewriteBase / RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule ^(.*)$ ./index.php?request=$1

By :

RewriteEngine On RewriteBase / RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^(.*)$ ./index.php?request=$1

In the .htaccess file

maxfenton commented 9 years ago

@colb That looks identical to me. Am I overlooking the fix?