Na localhostu mi radi sve super sto se tice htaccess-a a cim prebacim online samo mi index strana radi dok kad kliknem na neku drugu dobijam 404 default page kod godaddy.
Jel imao neko slicne probleme i resio ih.
ovo je kod htaccess-a:
# Turn on URL rewriting
Options +FollowSymLinks
RewriteEngine On
# Installation directory
RewriteBase /
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^([0-9A-Za-z]+)/?$ /index.php?url=$1 [L]
|