• If i set Permalink to anything other than default it stops my PHP website intergrations from working.

    On the php pages on my site I ahve used the LOOP system to display content from a set catagory.

    Is there away I can still use this and have Permalink to something more freindly than a number.

    Thanks

    Damien

Viewing 3 replies - 16 through 18 (of 18 total)
  • Thread Starter Damien15

    (@damien15)

    here is the .htaccess with peralinks set to none

    RewriteOptions inherit
    
    # BEGIN WordPress
    
    # END WordPress

    here is .htaccess with permalink set to postname

    RewriteOptions inherit
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /blog/index.php [L]
    </IfModule>
    
    # END WordPress

    thanks

    Damien

    Thread Starter Damien15

    (@damien15)

    might be misunderstanding this but can’t see why .htaccess would stop php file pull info from another source

    Thread Starter Damien15

    (@damien15)

    can anyone help?

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Permalink and Website Intergration – loop no longer working’ is closed to new replies.