我的网站上有一些页面,我不希望用户知道那里某个页面的地址,有没有办法让它们进入这个特定的页面时就像www一样.example.com /#或类似的东西?
答案 0 :(得分:0)
您只需使用位置标头重定向它们即可。我应该注意,如果它位于您的Web服务器的public_html文件夹中,那么无论您使用什么PHP代码放在文件之前,它都是NOT SECURE。
要隐藏文件/路径,只需将其放在公共文档之前的一个文件夹中,然后从那里访问它。
将其插入页面的开头。
#------------------------------------------------------------------------#
// Begin Custom Scripting to Move JavaScript from the Head to the Footer
function remove_head_scripts() {
remove_action('wp_head', 'wp_print_scripts');
remove_action('wp_head', 'wp_print_head_scripts', 9);
remove_action('wp_head', 'wp_enqueue_scripts', 1);
add_action('wp_footer', 'wp_print_scripts', 5);
add_action('wp_footer', 'wp_enqueue_scripts', 5);
add_action('wp_footer', 'wp_print_head_scripts', 5);
}
add_action( 'wp_enqueue_scripts', 'remove_head_scripts' );
// END Custom Scripting to Move JavaScript