我不会试图隐藏我的网址。我只需要对我的客户表现得很好。我要屏蔽的 URL 是:mysite.com/group/2
. 如果是这样就好了mysite.com/client
。所以,每当我的客户点击他的 url 时mysite.com/client
,后面的代码就会来自这个 url mysite.com/group/2
,它group
是一个模块(文件夹/源)并且2
是一个主 ID。我尝试过使用 Rewrite mod/Apache(.htaccess),但没有成功。我怎样才能做到这一点?还有什么办法吗?谢谢
这是.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
# My Rewrite Rule
RewriteRule ^client$ group/2
# Get rid of index.php
RewriteCond %{REQUEST_URI} /index\.php
RewriteRule (.*) index.php?rewrite=2 [L,QSA]
# Rewrite all directory-looking urls
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*) index.php?rewrite=1 [L,QSA]
# Try to route missing files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} public\/ [OR]
RewriteCond %{REQUEST_FILENAME} \.(jpg|gif|png|ico|flv|htm|html|php|css|js)$
RewriteRule . - [L]
# If the file doesn't exist, rewrite to index
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]
</IfModule>
# sends requests /index.php/path/to/module/ to "index.php"
# AcceptPathInfo On
# @todo This may not be effective in some cases
FileETag Size
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</IfModule>