doudai8083 2016-06-25 13:35
浏览 52
已采纳

关于mod_Rewrite的Apache htaccess问题

I got an .htaccess file must to rewrite URLs for SEO friendly website,

So when i click on eg. an article ( eg www.example.com/article/this-is-an-artcle/ ) must to redirect me to index.php?article=this-is-an-article.

Same thing I must to do with the category page and admin page, so for completeness is something like this

www.ex.com/index.php?article=example-article -> www.ex.com/article/example-article   
www.ex.com/index.php?category=example -> www.ex.com/category/example
www.ex.com/index.php?page=admin -> www.ex.com/adm

Instead of this I must to hide the index.php file from the URL.

I'm doing this, but produce a 404 error

Options +FollowSymLinks

RewriteEngine On

RewriteCond %{ENV:REDIRECT_STATUS} . [OR]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]

RewriteRule ^article/([\w-]+)/?$ index.php?article=$1 [QSA,L,NC]

RewriteRule ^category/([\w-]+)/?$ index.php?category=$1 [QSA,L,NC]

RewriteRule ^adm/?$ index.php?page=admin [QSA,L,NC]

RewriteRule ^(.*)$ index.php?/$1 [L,QSA]

Unfortunately If I open the apache.err.log can't see errors relating to the RewriteEngine, so i've tried to use LogLevel alert rewrite:trace6 in my .htaccess file, but didn't produce log, also tried to put a rewrite.log file in site folder, and make 777 permissions, no change, file still blank.

EDIT: Since this file work in another server ( cloud9 IDE ) and here not ( AWS Ubuntu 14.04 ) I'm assuming that I miss some configuration. How I can enable the LOG to see what's happen?

  • 写回答

3条回答 默认 最新

  • duansha7025 2016-06-28 02:00
    关注

    andreaem, try this:

    RewriteEngine On
    
    
    RewriteRule ^article/([a-zA-Z-_]+)+$ index.php?article=$1 [L]
    
    RewriteRule ^category/([a-zA-Z-_]+)+$ index.php?category=$1 [L]
    
    RewriteRule ^adm$ index.php?page=admin [L]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条