Jump to content

.htaccess Word Press


gaza165

Recommended Posts

Hi guys,

 

My word press installation is currently in my directory

 

http://www.example.com/wordpress

 

Howevere when i try to access a post it sends me to

 

http://www.example.com/?p=3#comments

 

Is there anything I can do about this, I have set the appropriate target in the word press settings.

 

Can i make a rewrite rule to deal with this...if so can someone help me with the right expression to use to achieve it.

 

Thanks

 

Garry

Link to comment
https://forums.phpfreaks.com/topic/233412-htaccess-word-press/
Share on other sites

I got a wordpress within a subdirectory and this is how I handled it in htaccess

 

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>

# END WordPress

Link to comment
https://forums.phpfreaks.com/topic/233412-htaccess-word-press/#findComment-1200377
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.