• User

    semplice rewrite

    salve, dovrei fare un semplice rewrite ma non ne vengo a capo.
    url originale: sito/html/modules/news/article.php?storyid=20
    che mi deve portare a:
    sito/html/modules/AMS/article.php?storyid=20

    il dominio è lo stesso cambia solo da news ad AMS. La querystring ovviamente è dinamica, quindi vale per tutte le pagine che finiscono con storyid.

    ho tentato invano in questo modo:

    
    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^/html/modules/news/article\.php$
    RewriteCond %{QUERY_STRING} ^id=([0-9]*)$
    RewriteRule . sito/html/modules/AMS/article\.php$ [R=301,L]
    
    ```grazie veramente.

  • Super User

    Ciao geggino,
    prova con questo htaccess

    
    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^/html/modules/news/article.php$
    RewriteCond %{QUERY_STRING} storyid=([0-9]*)
    RewriteRule (.*) /html/modules/AMS/article\.php [R=301,L]