2017-01-05, 01:12:50
(This post was last modified: 2017-01-05, 01:29:02 by Ascar.
Edit Reason: new info
)
(2017-01-05, 00:09:42)shawn_a Wrote: try removing items in your htaccess file
don't work
my htaccess is:
Code:
AddDefaultCharset UTF-8
#Options -Indexes
# blocks direct access to the XML files - they hold all the data!
<Files ~ "\.xml$">
Order allow,deny
Deny from all
Satisfy All
</Files>
<Files sitemap.xml>
Order allow,deny
Allow from all
Satisfy All
</Files>
RewriteEngine on
# Usually it RewriteBase is just '/', but
# replace it with your subdirectory path
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
and it's normal for me