- Home
- Categorie
- Coding e Sistemistica
- WordPress
- Feed generano errore 404
-
Anche eliminandolo non cambia nulla.
-
Fatto, ma ancora niente.
-
Eccolo:
RedirectMatch 301 /author/(.*) /$1 # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php </IfModule> # END WordPress # WordPress SEO - XML Sitemap Rewrite Fix <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^sitemap_index\.xml$ /index.php?sitemap=1 RewriteRule ^([^/]+?)-sitemap([0-9]+)?\.xml$ /index.php?sitemap=$1&sitemap_n=$2 </IfModule> # Protezione del file wp-config.php <files wp-config.php> order allow,deny deny from all </files>
-
Non credo dipenda da alcun plugin. Può dipendere forse da fatto che abbia creato una *custom taxonomy *"Rubriche"? (I cui archivi, tra l'altro, generano un errore 404 e i cui feed risultano esistenti, ma vuoti).
-
Ti ringrazio, l'ho inserito sostituendo a my_custom_post_type "rubriche". Non è cambiato nulla però.
-
Grazie mille, aspetto tue notizie allora!
-
Scusami, non avevo visto!
Il custom type si chiama "rubriche". Alcuni post vengono assegnati a una rubrica, come facessero parte di una categoria.
-
Non ho quei parametri:
//hook into the init action and call create_post_taxonomies when it firesadd_action( 'init', 'create_post_taxonomies', 0 ); //create two taxonomies, genres and writers for the post type "post" function create_post_taxonomies() { $labels = array( 'name' => _x( 'Rubriche', 'taxonomy general name' ), 'singular_name' => _x( 'Rubrica', 'taxonomy singular name' ), 'search_items' => __( 'Cerca rubriche' ), 'all_items' => __( 'Tutte le rubriche' ), 'parent_item' => __( 'Genitore rubrica' ), 'parent_item_colon' => __( 'Genitore rubrica:' ), 'edit_item' => __( 'Modifica rubrica' ), 'update_item' => __( 'Aggiorna rubrica' ), 'add_new_item' => __( 'Aggiungi una nuova rubrica' ), 'new_item_name' => __( 'Nome nuova rubrica' ), 'menu_name' => __( 'Rubriche' ) ); $rewrite = array( 'slug' => '', 'with_front' => false, 'hierarchical' => false, ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, 'rewrite' => $rewrite, ); register_taxonomy( 'rubriche', array( 'post' ), $args ); }
-
Dici che provando ad eliminare la nuova tassonomia il problema potrebbe risolversi?