Jump to content

/username instead of ?p=username


ryanfilard

Recommended Posts

It did not this is my whole ht file:

 

 

# BEGIN WordPress

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteBase /

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule . /index.php [L]

</IfModule>

 

# END WordPress

RewriteCond %{HTTP_HOST} ^ryanweekly.ryanweekly.com$ [OR]

RewriteCond %{HTTP_HOST} ^www.ryanweekly.ryanweekly.com$

 

RewriteEngine On

RewriteRule ^\/(.*)\/(.*)\/.*$ user/index.php?p=$1

 

Link to comment
Share on other sites

Those earlier rules may be interfering with the later rule.

 

'-d' (is directory)

Treats the TestString as a pathname and tests if it exists and is a directory.

'-f' (is regular file)

Treats the TestString as a pathname and tests if it exists and is a regular file.

 

Anything which doesn't exist as a file or directory is getting rewritten to ./index.php by the WordPress rules.  You can try putting your rules first:

 

RewriteEngine On
RewriteRule ^\/(.*)\/(.*)\/.*$ user/index.php?p=$1

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

# END WordPress
RewriteCond %{HTTP_HOST} ^ryanweekly.ryanweekly.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.ryanweekly.ryanweekly.com$

 

I have no idea if that will work as rewrite rules can be quite arcane, but it's worth a try.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.