Looks like you got it working.. what was going on?
Ok still confused sorry.. So you want wordpress to handle all files/urls except the files/urls in the /catalog/ directory which will be handled...
Yes you need to restart after modifying httpd.conf For using a php.ini see this post.
This is great advice.. I've been using mod_security for over a year now and absolutely recommend it to you as well.
huh? could you explain more?
@AidenChong Nite is right! Never modify any files other than the ones in your theme and plugin directory, those are wordpress core files, and...
don't chmod 777 unless 766 won't work.
RedirectMatch 301 ^/talk/(.+)$ http://site.com/forum/$1
By adding the QSA you ensure that this.asp?anything gets rewritten to this.php?anything Otherwise this.asp?anything would be rewritten to...
If you don't want your 404's indexed by google then add this to your header.php <?php if(is_404())echo '<meta name="robots" content="noindex"...
if you can ssh, then just do rm FOLDER/.htaccess if ftp then upload a blank .htaccess to FOLDER/.htaccess
Is that the link? ==>slaptear.com/component/option,com_mamboboard/Itemid,23/func,view/catid,13/id,5681/#5681 that is one UGLY looking url my...
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] This...
From the advanced .htaccess tutorial. This code will only perform the redirect if the request is not a directory, and if the request.html exists....
Don't forget the query_strings! RewriteEngine On RewriteBase / RewriteRule ^(.*)\.asp$ /$1.php [R=301,QSA,L,NC]
Separate names with a comma.