I have a friend who's running a site that's using "pretty permalinks". However, somehow, the URL is getting added to the URL. Meaning, it *appears* that the rewritten URL is getting stripped of anything that's not letters, and put back into it. So what *should* show up as:
is showing up as:
http://site.com/httpsitecomcategory/category
it's very bizarre. I've undone all plugins, and reverted to default (then redid the permalink structure) and the same thing happens - so it's not a theme or plugin thing. I can't imagine it's the permalink code, because it looks normal to me:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
it's set up to do /%category%/%postname%/
would anyone know why it's doing this? very weird. I'm wondering if it's some kind of server setting - but he's got another site on this same server that's set up with the same permalinks, and it's fine.