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 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同