Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. artax5005
    3. Post
    A

    artax5005

    @artax5005

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 3
    • Post 3
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    Località Toscana Età 42
    0
    Reputazione
    3
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User Newbie

    Post creati da artax5005

    • [PhpBB 3] .htaccess da Apache a Nginx, AIUTO!

      Sul mio VPS, sono passato da Apache a Nginx, ma il sito non risulta navigabile per via del mod rewrite, o meglio delle regole della riscrittura delle url, nello specifico, relativamente alla Seo mod. Ho cercato in lungo e in largo in rete, le ho provate di tutte, ma non sono riuscito a convertire l'htaccess di Apache in uno funzionante per Nginx (anche per la parte di wordpress non ci sono riuscito) ❌x:x

      Vorrei che qualcuno gentilmente, mi riscrivesse il mio ht.access in uno funzionante per Nginx.

      Il mio ht.access:

      #
      # Uncomment the statement below if you want to make use of
      # HTT authentication and it does not already work.
      # This could be required if you are for example using PHP via Apache CGI.
      #
      #<IfModule mod_rewrite.c>
      #RewriteEngine on
      #RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
      #</IfModule>
      
      <Files "config.php">
      Order Allow,Deny
      Deny from All
      </Files>
      
      <Files "common.php">
      Order Allow,Deny
      Deny from All
      </Files>
      
      
      
      
          # Lines That should already be in your .htacess
          <Files "config.php">
          Order Allow,Deny
          Deny from All
          </Files>
          <Files "common.php">
          Order Allow,Deny
          Deny from All
          </Files>
      
          # You may need to un-comment the following lines
            Options +FollowSymlinks
          # To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
            Options -MultiViews
          # REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
          RewriteEngine On
          # Uncomment the statement below if you want to make use of
          # HTTP authentication and it does not already work.
          # This could be required if you are for example using PHP via Apache CGI.
          # RewriteRule .* - [E=HTT_AUTHORIZATION:%{HTTP:Authorization},L]
          # REWRITE BASE
          RewriteBase /forum/
          # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
          # RewriteCond %{HTTP_HOST} !^MIOSITO\.net$ 
          # RewriteRule ^(.*)$ .MIOSITO.net/$1 [QSA,L,R=301]
          # DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
          RewriteCond %{REQUEST_FILENAME} -f
          RewriteCond %{REQUEST_FILENAME} -d
          RewriteRule . - 
          #####################################################
          # PHPBB SEO REWRITE RULES ALL MODES
          #####################################################
          # AUTHOR : dcz ww.phpbb-seo.com
          # STARTED : 01/2006
          #################################
          # FORUMS PAGES
          ###############
          # FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
          # RewriteRule ^forum/forum\.html$ /forum/index.php [QSA,L,NC]
          # FORUM ALL MODES
          RewriteRule ^forum/(forum|[a-z0-9_-]*-f)([0-9]+)/?(page([0-9]+)\.html)?$ /forum/viewforum.php?f=$2&start=$4 [QSA,L,NC]
          # TOPIC WITH VIRTUAL FOLDER ALL MODES
          RewriteRule ^forum/(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
          # TOPIC WITHOUT FORUM ID & DELIM ALL MODES
          RewriteRule ^forum/([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
          # PHPBB FILES ALL MODES
          RewriteRule ^forum/resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /forum/download/file.php?id=$2&t=$1 [QSA,L,NC]
          # PROFILES ALL MODES WITH ID
          RewriteRule ^forum/(member|[a-z0-9_-]*-u)([0-9]+)\.html$ /forum/memberlist.php?mode=viewprofile&u=$2 [QSA,L,NC]
          # USER MESSAGES ALL MODES WITH ID
          RewriteRule ^forum/(member|[a-z0-9_-]*-u)([0-9]+)-(topics|posts)(-([0-9]+))?\.html$ /forum/search.php?author_id=$2&sr=$3&start=$5 [QSA,L,NC]
          # GROUPS ALL MODES
          RewriteRule ^forum/(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /forum/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
          # POST
          RewriteRule ^forum/post([0-9]+)\.html$ /forum/viewtopic.php?p=$1 [QSA,L,NC]
          # ACTIVE TOPICS
          RewriteRule ^forum/active-topics(-([0-9]+))?\.html$ /forum/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
          # UNANSWERED TOPICS
          RewriteRule ^forum/unanswered(-([0-9]+))?\.html$ /forum/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
          # NEW POSTS
          RewriteRule ^forum/newposts(-([0-9]+))?\.html$ /forum/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
          # UNREAD POSTS
          RewriteRule ^forum/unreadposts(-([0-9]+))?\.html$ /forum/search.php?search_id=unreadposts&start=$2 [QSA,L,NC]
          # THE TEAM
          RewriteRule ^forum/the-team\.html$ /forum/memberlist.php?mode=leaders [QSA,L,NC]
          # HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
      
          # FORUM WITHOUT ID & DELIM ALL MODES
          # THESE THREE LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
          RewriteCond %{REQUEST_FILENAME} !-f
          RewriteCond %{REQUEST_FILENAME} !-d
          RewriteRule ^forum/([a-z0-9_-]+)/?(page([0-9]+)\.html)?$ /forum/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
          # FIX RELATIVE PATHS : FILES
          RewriteRule ^forum/.+/(style\.php|ucp\.php|mcp\.php|faq\.php|download/file.php)$ /forum/$1 [QSA,L,NC,R=301]
          # FIX RELATIVE PATHS : IMAGES
          RewriteRule ^forum/.+/(styles/.*|images/.*)/$ /forum/$1 [QSA,L,NC,R=301]
          # END PHPBB PAGES
          #####################################################
      
          
      RewriteEngine on
      RewriteCond %{HTTP_HOST} ^MIOSITO  
      RewriteRule ^(.*)$ htt://WWMIOSITOt/$1 [L,R=301]
      
      # BEGIN WPSuperCache
      # END WPSuperCache
      
      # 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
      
      

      Grazie in anticipo a chiunque mi potrà aiutare.

      postato in CMS & Piattaforme Self-Hosted
      A
      artax5005
    • [PhpBB 3] Problema miosito.com/forum

      Questo è il mio primo messaggio, non sapevo bene in quale sezione pubblicarlo, spero di non aver sbagliato.

      Ho un server con Linux e ovviamente il mio sito si trova nella canonica cartella
      /var/...

      Ho la necessità di creare un forum annesso al mio sito, in modo da avere:

      miosito.com/forum

      Se creo una cartella nella root del mio sito, e la chiamo "forum", e all'interno inserisco tutti i files del mio forum, quando vado però ad aprire la url, la pagina iniziale del forum, si vede solo parzialmente, cioè, non con lo sfondo e tutti i colori come dovrebbe essere e il forum non è navigabile, andando a darmi errori cliccando sui vari link (ModRewrite attivo). Il forum è in phphbb3, con la mod del Seo installata e il forum di per sé funziona benissimo, se inserito nella root, cioè se in var/..., installo il forum, all'indirizzo miosito.com, il forum funziona. Ma se invece lo sposto nella cartella forum, non va, Cosa non va? Devo apportare modifiche ai file di configurazione del server?

      Spero qualcuno mi possa aiutare, grazie

      postato in CMS & Piattaforme Self-Hosted
      A
      artax5005
    • Ci sono pure io ^^

      Un salutone

      postato in Presentati alla Community
      A
      artax5005