打印

[CPG] 精簡網址

[CPG] 精簡網址

基本上就是讓
4 v. p6 d0 W0 z' K, D
) J7 \" r2 f0 W+ |& {+ _4 W8 q6 Rhttp://pic.segaa.net/segaa( D; `9 I# T6 l* P
& @3 M# u! b; _
自動相通於
8 t/ F6 S' M) m: g/ B, {
. x; n  F; p1 N0 whttp://pic.segaa.net/index.php?cat=10002
) w9 t9 {6 G8 N3 f7 T4 _9 o( {
8 e* O3 f) l+ a, O) ?讓使用者簡單的記住自己相簿的網址
% L& [) w+ R2 I8 [
2 z5 u% G4 k2 v% b編輯index.php 加入以下這些" Y, [; m. h9 w
cpg134_user <- 這邊請自行修改
複製內容到剪貼板
代碼:
$qq=$HTTP_SERVER_VARS["QUERY_STRING"];
if (!strstr($qq,'=') and !empty($qq)) {
$qq = eregi_replace ( '%20', ' ', $qq);
$qq=mysql_escape_string($qq);
$sql = "SELECT user_id from `cpg134_users` WHERE `user_name` = "$qq"";
$result1 = mysql_query($sql);
if (mysql_num_rows($result1)>0) {
list($uid) = mysql_fetch_array($result1);
$cat = sprintf("1%04d",$uid);
}
mysql_free_result($result1);
}





//
// Main code
//
編輯 .htacess
複製內容到剪貼板
代碼:
<Files .htaccess>
deny from all
</Files>

RewriteEngine On
RewriteBase /
RewriteRule ^([A-Za-z_0-9-]+)/*$ /?$1 [L]
RewriteRule ^user-([0-9a-zA-Z]+)$ /index.php?cat=$1
RewriteRule ^user/([0-9a-zA-Z]+)$ /index.php?cat=$1
RewriteRule ^user/$ /index.php
RewriteRule ^my$ /profile.php?op=edit_profile
RewriteRule ^new$ /thumb.php?album=lastup
RewriteRule ^hot$ /thumb.php?album=topn


<Files user>
ForceType application/x-httpd-php
</Files>

#ErrorDocument 401 /index.php
#ErrorDocument 403 /index.php
#ErrorDocument 404 /index.php

TOP

進階的精簡網址 ... 基本上直接開啟外掛就好了
6 n! P6 N3 b, N! \$ u
; I1 F) w+ H$ I7 L" s. m; _3 |% A4 ^" s
1. 登入管理者之後 -> 設定 -> 允許外掛  點 是 -> 確認
5 O; {# W0 i0 w4 f/ V1 p, X1 @( g# \0 y; N9 [
2. 設定 -> ( 外掛管理 ) -> 名稱 Search Engine Friendly URLs v1.0 -> 旁邊有一個 i 的圖形點下去7 Y/ ]! ?1 E+ V% Z/ e  p( W
    選擇覆蓋掉原本的 .htaccess 檔
  b9 j. w+ z% ^" N0 e8 E; s: Q/ ^! x
3. 但是這樣作會讓之前的 http://pic.segaa.net/segaa 失效 , 所以再把上篇的內容加回去
9 {. u+ r$ ~' e. B. o$ X
  r8 z4 o$ U0 `, R0 \! L$ U& I9 D下面是我目前的 .htaccess 檔 + U, B+ y8 b2 {2 s2 q
# ]6 H. A, P9 `) C" z5 _
ps.我將 displayimage.php 改成 display.php thumbnails.php 改成  thumb.php
複製內容到剪貼板
代碼:
<Files .htaccess>
deny from all
</Files>


Options FollowSymLinks SymLinksIfOwnerMatch

RewriteEngine on

RewriteEngine On
RewriteBase /
RewriteRule ^([A-Za-z_0-9-]+)/*$ /?$1 [L]
RewriteRule ^user-([0-9a-zA-Z]+)$ /index.php?cat=$1
RewriteRule ^user/([0-9a-zA-Z]+)$ /index.php?cat=$1
RewriteRule ^user/$ /index.php

#  Uncomment the following line if your webserver's
#  URL is not directly related to physical file paths.
#  Update "YOUR_COPPERMINE_ROOT" (just / for root)

#RewriteBase /YOUR_COPPERMINE_ROOT

#
# Rewrite index urls
#
RewriteRule index-([0-9]*)\.html index.php?cat=$1 [NC]

RewriteRule index-([0-9]*)-page-([0-9]*)\.html index.php?cat=$1&page=$2 [NC]

#
# Rewrite thumbnail urls
#
RewriteRule thumbnails-([a-z0-9]*)-([\-]?[0-9]*)\.html thumbnails.php?album=$1&cat=$2 [NC]

RewriteRule thumbnails-([a-z0-9]*)-page-([0-9]*)\.html thumbnails.php?album=$1&page=$2 [NC]

RewriteRule thumbnails-([a-z0-9]*)-([\-]?[0-9]*)-page-([0-9]*)\.html thumbnails.php?album=$1&cat=$2&page=$3 [NC]

RewriteRule thumbnails-([0-9]*)\.html thumbnails.php?album=$1 [NC]
RewriteRule thumb-search-(.*)\.html thumb.php?album=search&search=$1 [NC]

#
# Rewrite displayimage urls
#
RewriteRule displayimage-([a-z0-9]+)-([\-]?[0-9]+)-([\-]?[0-9]+)\.html displayimage.php?album=$1&cat=$2&pos=$3 [NC]

RewriteRule displayimage-([a-z0-9]+)-([\-]?[0-9]+)\.html displayimage.php?album=$1&pos=$2 [NC]

RewriteRule displayimage-([0-9]+)\.html displayimage.php?pos=-$1 [NC]

RewriteRule slideshow-([0-9]+)-([\-]?[0-9]+)-([0-9]+)\.html displayimage.php?album=$1&pid=$2&slideshow=$3 [NC]

RewriteRule slideshow-([a-z]+)-([\-]?[0-9]+)-([0-9]+)-([0-9]+)\.html displayimage.php?album=$1&cat=$2&pid=$3&slideshow
=$4 [NC]

RewriteRule display-([a-z0-9]+)-([\-]?[0-9]+)-([\-]?[0-9]+)\.html display.php?album=$1&cat=$2&pos=$3 [NC]

RewriteRule display-([a-z0-9]+)-([\-]?[0-9]+)\.html display.php?album=$1&pos=$2 [NC]

RewriteRule display-([0-9]+)\.html display.php?pos=-$1 [NC]

RewriteRule slideshow-([0-9]+)-([\-]?[0-9]+)-([0-9]+)\.html display.php?album=$1&pid=$2&slideshow=$3 [NC]

RewriteRule slideshow-([a-z]+)-([\-]?[0-9]+)-([0-9]+)-([0-9]+)\.html display.php?album=$1&cat=$2&pid=$3&slideshow=$4 [
NC]

<Files user>
  ForceType application/x-httpd-php
  </Files>

  #ErrorDocument 401 /index.php
  #ErrorDocument 403 /index.php
  #ErrorDocument 404 /index.php

TOP

sorry 太少上論壇看東西了 3 V) h' g( F; Q# ]# H% i/ L' `
這邊原本是我用來丟些文件用的
  `) O: X' L) b關於這個問題,可能你要直接進資料庫,看你資料庫中所使用的欄位名稱  G" f. h% Q  T; z! o, l& s) D
- l9 z% ]! Z5 Y9 J

/ y  X8 `( I, X% J# E
引用:
原帖由 prolog 於 2006-11-21 02:46 PM 發表# \: K/ k8 X, N7 \; U5 h) k0 z
其實關於精簡網址- C( A5 \4 k8 Y. J
這邊站長的教學寫的很清楚了
& |: T& z2 |& ]" k6 n謝謝1 v$ @: K& L* x) I( s5 S: J

3 ^3 U0 Y6 k+ I" m* U0 z但是我照做之後! }! I5 M* h* ?9 P* m2 X5 I4 W
不能連入相簿了
: b1 R7 q) u/ V6 _他告訴我這行有誤
  C: m9 l7 j; V7 i9 E$sql = "SELECT user_id from `cpg134_users`  ...

TOP

發新話題