Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm really fed up. I've tried everything to get my pretty permalinks, but I still end up with either 500 or object not found messages. I am still trying to get it working in a local environment. I have Override set to all in my http.conf file and my http-xammp.conf file, FollowSymLinks in place and here's my .htaccess file:

Options -Indexes
Options +FollowSymLinks

# BEGIN WordPress

RewriteEngine On
RewriteBase /xampp/wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l 
RewriteRule ^(.+)$ /?file_name=$1  [L,QSA]
RewriteRule ^([^/]+/[^/]+)/([^/]+)/([^/]+)(/.+)?$ $1$4?$2=$3 [QSA,N]
RewriteCond $1 !.+\.xyz$
RewriteRule ^([^/]+/[^/]+)$ $1.xyz [L]

# END WordPress

but I still end up with errors! I'm new to the whole htaccess thing so any help would be greatly appreciated.

The error I'm getting now is:

"C:/xampp/htdocs/xampp/wordpress/.htaccess: RewriteEngine not allowed here, referer: http://www.mydomain.com/xampp/wordpress/wp-admin/options-permalink.php"

but I'm an administrator and I have full control? Any thoughts?

share|improve this question
I see you have created a number of tag wikis today. Please add a link to the source when copying and pasting text verbatim, otherwise you are plagiarizing the text. See: stackoverflow.com/review/suggested-edits/1394444#./…. – LittleBobbyTables Jan 25 at 18:43
ok most of it is edited though taken the junk out y'know – Rachel Gallen Jan 25 at 18:44
Not based on the example of the post I provided, or this one, you didn't. If you copy text, please cite it – LittleBobbyTables Jan 25 at 18:47
Your advice has been noted. – Rachel Gallen Jan 25 at 18:56
5  
@RachelGallen: Are you serious? You want to get your research assistant badge by blatantly copying information from other places? At least show that you're quoting information. I don't know about Ireland, but in other countries there are strict laws about scientific quoting. – Zeta Jan 25 at 20:58
show 5 more comments

2 Answers

up vote 1 down vote accepted

I think the issue here will be that you have the folder in the htdocs/xampp/ folder. If I remember correctly XAMPP has this folder set up in a certain way and that is likely to cause the problem. Move the wordpress folder into your htdocs folder and it should work as expected

share|improve this answer
1  
i have since resolved this issue but thanks for your answer. +1 – Rachel Gallen Jan 24 at 13:24

The error you're getting means that the proper override isn't turned on. Htaccess files "override" settings defined by the config files, and the AllowOverride directive in the config files determine what type of settings can be overridden by htaccess files. As you can see in the Apache mod_rewrite documentation there's a listing for each directive for Override, that means you need to set that in the config.

Somewhere in your xampp config files you should see a AllowOverride directive. You can either add FileInfo to that list, or you can change it to All:

AllowOverride FileInfo

or

AllowOverride All

This should allow you to use mod_rewrite directives in your htaccess files.


EDIT:

where should i put it? i put allow override everywhere

Take a look at the Apache docs for AllowOverride, you need to put it in a <Directory> container. So something like this:

<Directory "/path/to/your/xampp/wordpress">
    AllowOverride All
</Directory>

You have to make sure that the "/path/to/your/xampp/wordpress" is the absolute physical file path where your htaccess file is, and not the URI path (the path you'd see in, say, the URL). This means your htaccess file would be in /path/to/your/xampp/wordpress/.htaccess.

share|improve this answer
I already have AllowOverride set to All. Any other thoughts? – Rachel Gallen Jan 12 at 8:19
@Rachel have you restarted the server? Are you sure there is no other AllowOverride directive elsewhere in the server config? – Pekka 웃 Jan 12 at 8:22
yes! i also reinstalled wordpress and xammp and re-cobfigured the files! nothing seems to work! – Rachel Gallen Jan 12 at 8:23
@RachelGallen Are you sure the AllowOverride is inside a <Directory> container that points to the directory that the htaccess file is in (or a parent directory)? – Jon Lin Jan 12 at 8:28
where should i put it? i put allow override everywhere.. – Rachel Gallen Jan 12 at 8:36
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.