Report this

What is the reason for this report?

Mod_rewrite help

Posted on October 27, 2013

Hello,

I need some help with my mod_rewrite.

  • Note, this is my first time trying to play with .htaccess

I have some rewrite rules in it already, which works fine, looks like this: Options +FollowSymlinks RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([\w\d~%.:_-]+)$ index.php?page=$1 [QSA]

So when I go to www.mydomain.com/news then it goes to www.mydomain.com/index.php?page=news

what I need more is that, when they go to www.mydomain.com/news/3 then it will go to www.mydomain.com/index.php?page=news&id=3 I’ve tried with this line: RewriteRule ^news/([0-9]+) /news.php?id=$1

  • but do not work.

Any question is, would it be able to replace id number with the name of the post, like instead of www.mydomain.com/news/3 it will be www.mydomain.com/news/this_is_the_news_title

Thanks



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Are you using WordPress? If not, you may want to consider it (given that it has a nice permalink module that automatically writes the <code>Mod_rewrite</code> rules for you.

No, I do not use WordPress, I prefer build my own :)

Have you set AllowOverride All on apache? /etc/apache2/sites-available/yourdomain.com

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.