Hallo everyone, I try to install the Tastylgniter. I have created MySQL database, and mod_rewrite module is enabled in Appace. Now the thing is that the installation does not go forword, I dont understand .htaccess what to do with it.
I have added down al the files and what it's shows. I hoop somebody can help me with it. Thanks to everyone.
admin file:
1.To use URL Alias you need to be running apache with mod_rewrite enabled.
Options +FollowSymlinks
Prevent Directoy listing
Options -Indexes
<IfModule mod_rewrite.c>
Turn on URL rewriting
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage/admin then use
RewriteBase /mypage/admin
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
Main-Cache
<IfModule authz_core_module>
Require all denied
</IfModule>
<IfModule !authz_core_module>
Deny from all
</IfModule>
setup-.htaccess
1.To use URL Alias you need to be running apache with mod_rewrite enabled.
Options +FollowSymlinks
Prevent Directoy listing
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading slashes.
# If your page resides at http://www.example.com/mypage/setup then use
# RewriteBase /mypage/setup
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
Thanks.
Kind regards,
Zaid Ahmad