tel8618217223380 / restylegc

Automatically exported from code.google.com/p/restylegc
0 stars 0 forks source link

Error 404 when using fancy permalinks in Wordpress #14

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Turning on custom permalinks in wordpress

The php script with the iframe in returns 404 error

Using the Wordpress 2.9.2 and your latest version.

Please provide any additional information below.

It is in the 'post' part of page where it attempts to reload the page
giving 404 error on post part as it reloads!

Jo

Original issue reported on code.google.com by jjoanneb...@me.com on 12 Apr 2010 at 8:48

GoogleCodeExporter commented 9 years ago
Make sure you have a properly configured .htaccess file for wordpress.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

The lines for %{REQUEST_FILENAME} make sure that a file that exists in the file
system gets served as-is and not by WP.

Since server configuration and applications vary widely, I am unable to provide
support for this specific issue as it is not likely an actual bug with the 
script.

Original comment by brian.gi...@gmail.com on 13 Apr 2010 at 2:09