Şifre : 123456
/admin yazarak panele girebilirsiniz, mysql'de settings tablosunun 3. sayfasından site adresini değiştirmeniz gerekiyor.
HTACCESS DOSYASI
Options -Indexes
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteEngine on
RewriteCond %{SERVER_PORT} 80
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
RewriteRule products/item/(.*)/ item.php?id=$1
RewriteRule item/(.*)/ item.php?id=$1
RewriteRule profile/(.*)/ profile.php?user=$1
RewriteRule products/item/(.*)/ item.php?id=$1
RewriteRule category/(.*)/ category.php?id=$1
RewriteRule subcat/(.*)/ sub-category.php?id=$1
RewriteRule ^page/([^/]*)/(.*)$ custom-page.php?id=$1 [L]
RewriteRule ^free(.*)$ free.php [L]
RewriteRule ^contact(.*)$ contact.php [L]
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php73” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php73 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit